summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrique Nakashima <hnakashima@chromium.org>2018-04-27 21:22:07 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-04-27 21:22:07 +0000
commit82f4f7f01bcac4acae86e179a57ae78cc5691a50 (patch)
tree649f4a8e5c8c1336c2320831245ff3250159b867
parent5ee10423d237c5bd22b8db6fe6d7b53edd0906dc (diff)
downloadpdfium-82f4f7f01bcac4acae86e179a57ae78cc5691a50.tar.xz
Fix focused day disappears in XFA MonthCalendar.
Bug: pdfium:751 Change-Id: I27c4cf96c1b0d314ace8461ca6020c1034eff646 Reviewed-on: https://pdfium-review.googlesource.com/31650 Commit-Queue: Henrique Nakashima <hnakashima@chromium.org> Commit-Queue: Ryan Harrison <rharrison@chromium.org> Reviewed-by: Ryan Harrison <rharrison@chromium.org>
-rw-r--r--xfa/fxfa/cxfa_fwltheme.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/cxfa_fwltheme.cpp b/xfa/fxfa/cxfa_fwltheme.cpp
index 22e091ee12..4dd7024391 100644
--- a/xfa/fxfa/cxfa_fwltheme.cpp
+++ b/xfa/fxfa/cxfa_fwltheme.cpp
@@ -107,7 +107,7 @@ void CXFA_FWLTheme::DrawText(CFWL_ThemeText* pParams) {
!(pParams->m_dwStates & FWL_ITEMSTATE_MCD_Flag) &&
(pParams->m_dwStates &
(CFWL_PartState_Hovered | CFWL_PartState_Selected))) {
- m_pTextOut->SetTextColor(0xFFFFFFFF);
+ m_pTextOut->SetTextColor(0xFF888888);
}
if (pParams->m_iPart == CFWL_Part::Caption)
m_pTextOut->SetTextColor(ArgbEncode(0xff, 0, 153, 255));