aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dmenu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmenu.c b/dmenu.c
index 227648c..b82ff59 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -136,7 +136,7 @@ drawmenu(void) {
136 else if(curr && (dc->w == inputw || curr->next)) { 136 else if(curr && (dc->w == inputw || curr->next)) {
137 dc->x += inputw; 137 dc->x += inputw;
138 dc->w = textw(dc, "<"); 138 dc->w = textw(dc, "<");
139 if(prev) 139 if(curr->left)
140 drawtext(dc, "<", normcol); 140 drawtext(dc, "<", normcol);
141 for(item = curr; item != next; item = item->right) { 141 for(item = curr; item != next; item = item->right) {
142 dc->x += dc->w; 142 dc->x += dc->w;