fix prompt color style how it used to be 1c242df1
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!
Hiltjo Posthuma · 2015-07-19 20:29 1 file(s) · +1 −1
dmenu.c +1 −1
207 207
208 208
	if(prompt && *prompt) {
209 209
		drw_setscheme(drw, &scheme[SchemeSel]);
210 -
		drw_text(drw, x, 0, promptw, bh, prompt, 1);
210 +
		drw_text(drw, x, 0, promptw, bh, prompt, 0);
211 211
		x += promptw;
212 212
	}
213 213
	/* draw input field */