1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

ui: fix condition

Fix mistake in a condition. Also add sanity check to
win_refresh_with_subwin().
This commit is contained in:
Dmitry Podgorny 2020-04-23 14:30:49 +03:00
parent 4a712fcc7b
commit 4672d0ca19
2 changed files with 4 additions and 2 deletions

View File

@ -748,6 +748,9 @@ win_refresh_with_subwin(ProfWin *window)
subwin_cols = win_occpuants_cols();
} else if (window->type == WIN_CONSOLE) {
subwin_cols = win_roster_cols();
} else {
// Other window types don't support subwindows, we shouldn't be here
return;
}
pnoutrefresh(layout->base.win, layout->base.y_pos, 0, row_start, 0, row_end, (cols-subwin_cols)-1);

View File

@ -743,8 +743,7 @@ wins_show_subwin(ProfWin *window)
win_show_subwin(window);
// only mucwin and console have occupants/roster subwin
if (window->type != WIN_MUC ||
window->type != WIN_CONSOLE) {
if (window->type != WIN_MUC && window->type != WIN_CONSOLE) {
return;
}