1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-23 06:35:36 +00:00
This commit is contained in:
Jari Matilainen 2024-04-27 21:55:46 +02:00 committed by GitHub
commit c10681071c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View File

@ -363,6 +363,9 @@ textbuffer-view.c
textbuffer-formats.c
"gui render line text", TEXT_DEST_REC, GString *str, LINE_INFO_META_REC
textbuffer-commands.c
"window hidelevel changed", WINDOW_REC
Perl
----

View File

@ -110,6 +110,8 @@ static void cmd_window_hidelevel(const char *data)
printformat_window(active_win, MSGLEVEL_CLIENTNOTICE,
TXT_WINDOW_HIDELEVEL, level);
g_free(level);
signal_emit("window hidelevel changed", 1, active_win);
}
static void cmd_scrollback(const char *data, SERVER_REC *server,