summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNickolay Ponomarev <asqueella@gmail.com>2018-11-05 04:18:45 +0300
committerTim Oram <dev@mitmaro.ca>2018-11-08 19:54:39 -0330
commitc122c8f31e94f5faa4a516997d5eaf84c3775195 (patch)
tree772c39f195e679ef883e593f1d3f483fef875dd5
parentee203e421d7f587d3e9a177abe0d51c934709ef5 (diff)
Note that the first color pair must be COLOR_WHITE.
So that the fix from the previous commit 9298d25be239046da7b1921ffec5ee4efc30743b is not undone accidentally.
-rw-r--r--src/window.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.rs b/src/window.rs
index 49072d6..e0ac0e6 100644
--- a/src/window.rs
+++ b/src/window.rs
@@ -26,7 +26,7 @@ use config::Config;
use input::Input;
const COLOR_TABLE: [i16; 8] = [
- pancurses::COLOR_WHITE,
+ pancurses::COLOR_WHITE, // the default foreground color must be the first (see #77)
pancurses::COLOR_BLACK,
pancurses::COLOR_BLUE,
pancurses::COLOR_CYAN,