1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-29 11:56:44 +02:00

no trailing space for command tab-complete

This commit is contained in:
Jfreegman
2014-06-02 03:19:59 -04:00
parent 4d249c5fe3
commit f9e15cd60b
3 changed files with 19 additions and 8 deletions

View File

@ -435,7 +435,7 @@ void refresh_inactive_windows(void)
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
ToxWindow *a = &windows[i];
if (a->active && a != active_window && !a->is_prompt) /* if prompt doesn't have scroll mode */
if (a->active && a != active_window && (a->is_chat || a->is_groupchat))
line_info_print(a);
}
}