reverted calcoffsets

This commit is contained in:
Connor Lane Smith 2010-08-10 14:14:37 +01:00
parent caf5246268
commit 605e9b6c03
1 changed files with 6 additions and 5 deletions

11
dmenu.c
View File

@ -82,11 +82,12 @@ calcoffsets(void) {
else
n = mw - (promptw + inputw + textw(dc, "<") + textw(dc, ">"));
for(i = 0, next = curr; i <= n && next; next = next->right)
i += (lines > 0) ? LINEH : MIN(textw(dc, next->text), mw/3);
for(i = 0, prev = curr; i <= n && prev && prev->left; prev = prev->left)
i += (lines > 0) ? LINEH : MIN(textw(dc, prev->left->text), mw/3);
for(i = 0, next = curr; next; next = next->right)
if((i += (lines > 0) ? LINEH : MIN(textw(dc, next->text), mw/3)) > n)
break;
for(i = 0, prev = curr; prev && prev->left; prev = prev->left)
if((i += (lines > 0) ? LINEH : MIN(textw(dc, prev->left->text), mw/3)) > n)
break;
}
char *