From 47d66d214f426ac191b92dc5c3739783d852d8f0 Mon Sep 17 00:00:00 2001 From: David Leadbeater Date: Tue, 8 Jul 2014 01:38:08 +0100 Subject: Only show banner if not connecting to servers It's tricky to make the banner show first in all cases and it's unlikely to be seen if someone is connecting to a server already, so just don't show it. --- src/fe-text/irssi.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/fe-text/irssi.c b/src/fe-text/irssi.c index a77ded49..4dda7d39 100644 --- a/src/fe-text/irssi.c +++ b/src/fe-text/irssi.c @@ -27,6 +27,7 @@ #include "core.h" #include "settings.h" #include "session.h" +#include "servers.h" #include "printtext.h" #include "fe-common-core.h" @@ -205,8 +206,10 @@ static void textui_finish_init(void) signal_emit("irssi init finished", 0); statusbar_redraw(NULL, TRUE); - printtext_window(active_win, MSGLEVEL_CRAP, - "%s", banner_text); + if (servers == NULL && lookup_servers == NULL) { + printtext(NULL, NULL, MSGLEVEL_CRAP|MSGLEVEL_NO_ACT, + "%s", banner_text); + } if (display_firsttimer) { printtext_window(active_win, MSGLEVEL_CRAP, -- cgit v1.2.3