aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2007-08-18 03:33:30 +0000
committernyamatongwe <devnull@localhost>2007-08-18 03:33:30 +0000
commit4228fb9cd91c9778ec90b3f0d34859684642c85d (patch)
treed10872b904c47953b421d1703baba9ed9bb6de25 /src
parent9232b666f1de9bbdf15bbf7e03edb8869110db2b (diff)
downloadscintilla-mirror-4228fb9cd91c9778ec90b3f0d34859684642c85d.tar.gz
Fixed bug #1772351 SCI_CALLTIPSETBACK setting foreground rather than
background colour.
Diffstat (limited to 'src')
-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;