Browse Source

decosmetics

master
Connor Lane Smith 14 years ago
parent
commit
f2abaf8b30
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      dinput.c

+ 2
- 2
dinput.c View File

@@ -76,11 +76,11 @@ drawinput(void)
/* print prompt? */
if(prompt) {
dc.w = promptw;
drawtext(&dc, prompt, normcol, False);
drawtext(&dc, prompt, selcol, False);
dc.x += dc.w;
}
dc.w = mw - dc.x;
drawtext(&dc, *text ? text : NULL, selcol, False);
drawtext(&dc, *text ? text : NULL, normcol, False);
drawcursor();
XCopyArea(dpy, dc.drawable, win, dc.gc, 0, 0, mw, mh, 0, 0);
XFlush(dpy);


Loading…
Cancel
Save