From 09e02fc7a27f609813bffd2f882400579ade86bc Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Wed, 20 May 2009 13:16:17 +0000 Subject: [PATCH] Fixed invisible CHM tooltip text bug when window text colour is black. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60698 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/helpchm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/msw/helpchm.cpp b/src/msw/helpchm.cpp index e88789a042..b41a59626d 100644 --- a/src/msw/helpchm.cpp +++ b/src/msw/helpchm.cpp @@ -156,8 +156,8 @@ wxCHMHelpController::DoDisplayTextPopup(const wxChar *text, popup.pszText = text; popup.pt.x = pos.x; popup.pt.y = pos.y; - popup.clrForeground = - popup.clrBackground = (COLORREF)-1; + popup.clrForeground = ::GetSysColor(COLOR_INFOTEXT); + popup.clrBackground = ::GetSysColor(COLOR_INFOBK); popup.rcMargins.top = popup.rcMargins.left = popup.rcMargins.right = -- 2.49.0