mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
Merge pull request #1324 from profanity-im/ui-fix
Fix condition in wins_show_subwin()
This commit is contained in:
commit
d572ffa061
@ -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