Don't set columns for rows without tabs

This commit is contained in:
Ray Chason
2026-08-22 10:57:24 +03:00
committed by Pasi Kallinen
parent bc14bd7f30
commit ffb08d3be6
+3 -1
View File
@@ -1416,7 +1416,9 @@ menu_create_entries(struct xwindow *wp, struct menu *curr_menu)
/* Set the column widths */
for (curr = curr_menu->base; curr; curr = curr->next) {
X11_set_column_widths(curr->w, col_widths, num_cols);
if (strchr(curr->str, '\t') != NULL) { /* Might be a header if no tab */
X11_set_column_widths(curr->w, col_widths, num_cols);
}
XtManageChild(curr->w);
boolean canpick = (how != PICK_NONE && curr->identifier.a_void);