Added border, center, fuzzymatch, incremental, initialtext, instant, line-height, mouse-support, navhistory, non-blocking-stdin, password, pipeout, printinputtext, rejectnomatch, scroll, vertfull, wmtype and xyw patches
2019-09-19 00:33:15 +02:00
|
|
|
static int
|
|
|
|
max_textw(void)
|
|
|
|
{
|
|
|
|
int len = 0;
|
|
|
|
for (struct item *item = items; item && item->text; item++)
|
|
|
|
len = MAX(TEXTW(item->text), len);
|
|
|
|
return len;
|
2024-07-16 21:42:32 +02:00
|
|
|
}
|