1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-30 21:55:24 +00:00

Merge pull request #1324 from profanity-im/ui-fix

Fix condition in wins_show_subwin()
This commit is contained in:
Michael Vetter 2020-04-23 11:12:27 +02:00 committed by GitHub
commit d572ffa061
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}