diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2018-02-06 21:36:45 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-02-06 21:36:45 +0000 |
commit | bfeab62b37a701dc82f180e49d26c602f96f96f9 (patch) | |
tree | 114a99e1d3c0ea26f7dc15727dae0214125b4c89 /fpdfsdk | |
parent | f3f1869409a59adbfde4b2b546f30c81051aad14 (diff) | |
download | pdfium-bfeab62b37a701dc82f180e49d26c602f96f96f9.tar.xz |
Fix caret not appearing in XFA Edits.
This makes the caret appear (again?), blink, and fixes its positioning
to be a little spaced from the last character.
Known issue: when the edit is empty, the caret is not necessarily
aligned with where the text will be.
Bug: chromium:592750
Change-Id: I950b0ea236db8855c6ed50f48ec1935d97e6ccf8
Reviewed-on: https://pdfium-review.googlesource.com/25451
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'fpdfsdk')
-rw-r--r-- | fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h b/fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h index d763f025ff..96ccc1ce7e 100644 --- a/fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h +++ b/fpdfsdk/fpdfxfa/cxfa_fwladaptertimermgr.h @@ -18,7 +18,7 @@ class CXFA_FWLAdapterTimerMgr : public IFWL_AdapterTimerMgr { public: explicit CXFA_FWLAdapterTimerMgr(CPDFSDK_FormFillEnvironment* pFormFillEnv); - ~CXFA_FWLAdapterTimerMgr(); + ~CXFA_FWLAdapterTimerMgr() override; void Start(CFWL_Timer* pTimer, uint32_t dwElapse, |