Fix: Handle missing (NULL pointer) output for separator.

This commit is contained in:
Tobias R. Henle 2021-04-05 21:28:21 +02:00
parent 78cdb02be6
commit 2e7a6bdcf3

View File

@ -721,8 +721,10 @@ setupmenu(struct Menu *menu, XClassHint *classh)
/* set window title (used if wflag is on) */
if (menu->parent == NULL) {
title = classh->res_name;
} else {
} else if (menu->caller->output) {
title = menu->caller->output;
} else {
title = "\0";
}
XStringListToTextProperty(&title, 1, &wintitle);