mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 16:42:30 +02:00
Merge pull request #36 from ailin-nemui/missing-hilights
correctly store updated message levels e.g. from /hilight
(cherry picked from commit ad8221835c)
This commit is contained in:
parent
0f3e95892d
commit
8b49cd012d
2 changed files with 4 additions and 3 deletions
5
NEWS
5
NEWS
|
|
@ -2,9 +2,10 @@ v1.3.0-an 2021-09-05 Ailin Nemui <Nei>
|
||||||
* /SET resolve_reverse_lookup setting was removed (#1135)
|
* /SET resolve_reverse_lookup setting was removed (#1135)
|
||||||
* Irssi will try to connect on IPv4 if IPv6 connection failed
|
* Irssi will try to connect on IPv4 if IPv6 connection failed
|
||||||
(#1146). By Shivaram Lingamneni
|
(#1146). By Shivaram Lingamneni
|
||||||
|
|
||||||
* The display system now renders formats on the fly (#1079,
|
* The display system now renders formats on the fly (#1079,
|
||||||
#1188, #1191, #1192, #1204, #1205, #1209, an#13, an#14, an#28,
|
#1188, #1191, #1192, #1204, #1205, #1209, #1349, an#13,
|
||||||
an#29)
|
an#14, an#28, an#29, an#36)
|
||||||
|
|
||||||
This major change will break scripts that try to modify
|
This major change will break scripts that try to modify
|
||||||
printed text during "print text" signal (#1189). They need
|
printed text during "print text" signal (#1189). They need
|
||||||
|
|
|
||||||
|
|
@ -265,7 +265,7 @@ static void sig_gui_print_text_finished(WINDOW_REC *window, TEXT_DEST_REC *dest)
|
||||||
|
|
||||||
info->meta = line_meta_create(dest->meta);
|
info->meta = line_meta_create(dest->meta);
|
||||||
|
|
||||||
info->level |= MSGLEVEL_FORMAT;
|
info->level = dest->level | MSGLEVEL_FORMAT;
|
||||||
|
|
||||||
/* the line will be inserted into the view with textbuffer_view_insert_line by
|
/* the line will be inserted into the view with textbuffer_view_insert_line by
|
||||||
gui-printtext.c:view_add_eol */
|
gui-printtext.c:view_add_eol */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue