Переглянути джерело

removed the i = textnw... as remarked by Martin Hurton

master
Anselm R Garbe 16 роки тому
джерело
коміт
b95e61c9b7
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      dmenu.c

+ 1
- 1
dmenu.c Переглянути файл

@@ -226,7 +226,7 @@ drawtext(const char *text, unsigned long col[ColLast]) {
y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent;
x = dc.x + (h / 2);
/* shorten text if necessary */
for(len = MIN(olen, sizeof buf); len && (i = textnw(buf, len)) > dc.w - h; len--);
for(len = MIN(olen, sizeof buf); len && textnw(buf, len) > dc.w - h; len--);
if(!len)
return;
memcpy(buf, text, len);


Завантаження…
Відмінити
Зберегти