diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2004-01-21 18:40:13 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2004-01-21 18:40:13 +0000 |
commit | dc38b59849da161573284139798ad54c1ea53102 (patch) | |
tree | ffd1af2c697930bcc7543c9e6163b98d14bb7520 /src/plugins | |
parent | 7d91cdcbb3ed6fd6ab48cb77e4bb87cc36548264 (diff) | |
download | weechat-dc38b59849da161573284139798ad54c1ea53102.zip |
Infobar highlight notifications
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/perl/wee-perl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/perl/wee-perl.c b/src/plugins/perl/wee-perl.c index 45f2eeb7c..72df548ae 100644 --- a/src/plugins/perl/wee-perl.c +++ b/src/plugins/perl/wee-perl.c @@ -215,7 +215,7 @@ static XS (XS_IRC_print_infobar) (void) cv; if (items == 2) - gui_infobar_print (SvPV (ST (1), integer), SvIV (ST (0))); + gui_infobar_printf (SvIV (ST (0)), COLOR_WIN_INFOBAR, SvPV (ST (1), integer)); else { irc_display_prefix (NULL, PREFIX_ERROR); |