1
0
mirror of https://github.com/profanity-im/profanity.git synced 2025-01-03 14:57:42 -05:00

Fix formatting for privileges on

`/privileges on` lists `Moderator`, `Visitor` etc. Formatting was wrong
here. Printing privilige followed by nickaname in the same line.
This commit is contained in:
Michael Vetter 2019-04-24 10:28:27 +02:00
parent 30f9de61d0
commit a666f0deae

View File

@ -107,6 +107,7 @@ occupantswin_occupants(const char *const roomjid)
g_string_append(role, "Moderators");
wattron(layout->subwin, theme_attrs(THEME_OCCUPANTS_HEADER));
win_sub_newline_lazy(layout->subwin);
win_sub_print(layout->subwin, role->str, TRUE, FALSE, 0);
wattroff(layout->subwin, theme_attrs(THEME_OCCUPANTS_HEADER));
g_string_free(role, TRUE);
@ -123,6 +124,7 @@ occupantswin_occupants(const char *const roomjid)
g_string_append(role, "Participants");
wattron(layout->subwin, theme_attrs(THEME_OCCUPANTS_HEADER));
win_sub_newline_lazy(layout->subwin);
win_sub_print(layout->subwin, role->str, TRUE, FALSE, 0);
wattroff(layout->subwin, theme_attrs(THEME_OCCUPANTS_HEADER));
g_string_free(role, TRUE);
@ -139,6 +141,7 @@ occupantswin_occupants(const char *const roomjid)
g_string_append(role, "Visitors");
wattron(layout->subwin, theme_attrs(THEME_OCCUPANTS_HEADER));
win_sub_newline_lazy(layout->subwin);
win_sub_print(layout->subwin, role->str, TRUE, FALSE, 0);
wattroff(layout->subwin, theme_attrs(THEME_OCCUPANTS_HEADER));
g_string_free(role, TRUE);
@ -155,6 +158,7 @@ occupantswin_occupants(const char *const roomjid)
g_string_append(role, "Occupants\n");
wattron(layout->subwin, theme_attrs(THEME_OCCUPANTS_HEADER));
win_sub_newline_lazy(layout->subwin);
win_sub_print(layout->subwin, role->str, TRUE, FALSE, 0);
wattroff(layout->subwin, theme_attrs(THEME_OCCUPANTS_HEADER));
g_string_free(role, TRUE);