aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/interface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interface.cpp b/src/interface.cpp
index 597924c..1e4d0b7 100644
--- a/src/interface.cpp
+++ b/src/interface.cpp
@@ -102,13 +102,13 @@ View<ViewImpl>::setup(void)
ssm(SCI_STYLESETBACK, STYLE_LINENUMBER, 0x000000);
/*
- * Use (light) blue as the default background color
+ * Use white as the default background color
* for call tips. Necessary since this style is also
* used for popup windows and we need to provide a sane
* default if no color-scheme is applied (and --no-profile).
*/
ssm(SCI_STYLESETFORE, STYLE_CALLTIP, 0x000000);
- ssm(SCI_STYLESETBACK, STYLE_CALLTIP, 0xFF0000);
+ ssm(SCI_STYLESETBACK, STYLE_CALLTIP, 0xFFFFFF);
}
template class View<ViewCurrent>;