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:
parent
4a712fcc7b
commit
4672d0ca19
@ -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);
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user