From 18dcf738967a45208e880b72ce273afdd93ee6c7 Mon Sep 17 00:00:00 2001 From: Connor Lane Smith Date: Mon, 28 Jun 2010 06:09:34 +0100 Subject: extended libdraw --- dinput.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dinput.c') diff --git a/dinput.c b/dinput.c index 228780c..0bf2679 100644 --- a/dinput.c +++ b/dinput.c @@ -72,15 +72,15 @@ drawinput(void) dc.y = 0; dc.w = mw; dc.h = mh; - drawtext(&dc, NULL, normcol); + drawtext(&dc, NULL, normcol, False); /* print prompt? */ if(prompt) { dc.w = promptw; - drawtext(&dc, prompt, selcol); + drawtext(&dc, prompt, selcol, False); dc.x += dc.w; } dc.w = mw - dc.x; - drawtext(&dc, *text ? text : NULL, normcol); + drawtext(&dc, *text ? text : NULL, normcol, False); drawcursor(); XCopyArea(dpy, dc.drawable, win, dc.gc, 0, 0, mw, mh, 0, 0); XFlush(dpy); @@ -233,7 +233,7 @@ run(void) { /* main event loop */ while(running && !XNextEvent(dpy, &ev)) - switch (ev.type) { + switch(ev.type) { case KeyPress: kpress(&ev.xkey); break; -- cgit v1.2.3