aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConnor Lane Smith <cls@lubutu.com>2010-05-05 11:42:39 +0100
committerConnor Lane Smith <cls@lubutu.com>2010-05-05 11:42:39 +0100
commit5bc288b2b1270957baab2142e1e8b20b796fed11 (patch)
tree772b4f194ece08e490a8dce2f1845fe08fe6d9ae
parenta6835349dfeafb994f250fcf98acc6dd74f010c2 (diff)
fixed vlist alignment
-rw-r--r--dmenu.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/dmenu.c b/dmenu.c
index 1762dba..bebc206 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -255,8 +255,7 @@ void
255drawmenuv(void) { 255drawmenuv(void) {
256 Item *i; 256 Item *i;
257 257
258 dc.x = 0; 258 dc.w = mw - dc.x;
259 dc.w = mw;
260 dc.y += dc.font.height + 2; 259 dc.y += dc.font.height + 2;
261 for(i = curr; i != next; i=i->right) { 260 for(i = curr; i != next; i=i->right) {
262 drawtext(i->text, (sel == i) ? dc.sel : dc.norm); 261 drawtext(i->text, (sel == i) ? dc.sel : dc.norm);