mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04:00
Merge pull request #949 from ailin-nemui/help-narrow
Fix insufficient size of help column when the window width is small
This commit is contained in:
commit
f207e844f1
@ -77,7 +77,12 @@ static void help_category(GSList *cmdlist, int items)
|
||||
max_width, 6, 1, 3, &columns, &rows);
|
||||
cmdlist = columns_sort_list(cmdlist, rows);
|
||||
|
||||
/* rows in last column */
|
||||
/* if the screen is too narrow the window width may be not
|
||||
enough for even 1 column */
|
||||
if (cols == 1 && columns[0] > max_width)
|
||||
max_width = columns[0];
|
||||
|
||||
/* rows in last column */
|
||||
last_col_rows = rows-(cols*rows-g_slist_length(cmdlist));
|
||||
if (last_col_rows == 0)
|
||||
last_col_rows = rows;
|
||||
|
Loading…
Reference in New Issue
Block a user