summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xfa/fwl/cfwl_caret.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fwl/cfwl_caret.cpp b/xfa/fwl/cfwl_caret.cpp
index 03c8ffde68..c864b2d809 100644
--- a/xfa/fwl/cfwl_caret.cpp
+++ b/xfa/fwl/cfwl_caret.cpp
@@ -17,7 +17,7 @@
namespace {
-const uint32_t kFrequency = 400;
+const uint32_t kBlinkPeriodMs = 600;
constexpr int kStateHighlight = (1 << 0);
@@ -63,7 +63,7 @@ void CFWL_Caret::ShowCaret() {
pOldTimerInfo->StopTimer();
}
- m_pTimerInfo = m_pTimer->StartTimer(kFrequency, true);
+ m_pTimerInfo = m_pTimer->StartTimer(kBlinkPeriodMs, true);
RemoveStates(FWL_WGTSTATE_Invisible);
}