diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-07-19 20:29:26 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-07-19 20:29:26 +0200 |
commit | 1c242df1244af10cf5d2c2640ac0d2a7ad1ad878 (patch) | |
tree | 4f79c39c89d3c32889fdc6924a8e3b7104a840d3 | |
parent | Use libdraw: add Xft and fallback-fonts support to graphics lib (diff) | |
download | dmenu-1c242df1244af10cf5d2c2640ac0d2a7ad1ad878.tar.gz dmenu-1c242df1244af10cf5d2c2640ac0d2a7ad1ad878.tar.bz2 dmenu-1c242df1244af10cf5d2c2640ac0d2a7ad1ad878.zip |
fix prompt color style how it used to be
This is the style how it was before the big Xft change. The colors were inverted, this was not the case before the change. Reported by "zvz" on #suckless IRC, thanks!
-rw-r--r-- | dmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dmenu.c b/dmenu.c index 94be574..11b6e8d 100644 --- a/dmenu.c +++ b/dmenu.c @@ -207,7 +207,7 @@ drawmenu(void) { if(prompt && *prompt) { drw_setscheme(drw, &scheme[SchemeSel]); - drw_text(drw, x, 0, promptw, bh, prompt, 1); + drw_text(drw, x, 0, promptw, bh, prompt, 0); x += promptw; } /* draw input field */ |