aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ScintillaBase.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2007-08-18 03:33:30 +0000
committernyamatongwe <unknown>2007-08-18 03:33:30 +0000
commite8e88cea44afc66c6e43c8d041e93a0b1d16c90d (patch)
treed10872b904c47953b421d1703baba9ed9bb6de25 /src/ScintillaBase.cxx
parentc19be2c1b234ac62720f3db7a4e483c271867d38 (diff)
downloadscintilla-mirror-e8e88cea44afc66c6e43c8d041e93a0b1d16c90d.tar.gz
Fixed bug #1772351 SCI_CALLTIPSETBACK setting foreground rather than
background colour.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r--src/ScintillaBase.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx
index 60d9c70fc..679cc1d1f 100644
--- a/src/ScintillaBase.cxx
+++ b/src/ScintillaBase.cxx
@@ -643,7 +643,7 @@ sptr_t ScintillaBase::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPara
case SCI_CALLTIPSETBACK:
ct.colourBG = ColourDesired(wParam);
- vs.styles[STYLE_CALLTIP].fore = ct.colourBG;
+ vs.styles[STYLE_CALLTIP].back = ct.colourBG;
InvalidateStyleRedraw();
break;