summary refs log tree commit diff stats
path: root/src/common/inbound.c
diff options
context:
space:
mode:
authorRichardHitt <rbh00@netcom.com>2014-03-24 12:46:02 -0700
committerTingPing <tingping@tingping.se>2014-03-24 21:22:04 -0400
commit1a3bfdce75822a2c3cdf2ee23a266eb0ffbe4775 (patch)
treea4a9821e59500e3670fef01399fb0c9b2f76deab /src/common/inbound.c
parent46e449f1107591720bec206d8df6a55c615f2660 (diff)
Improve handling scrollback when gui_tab_server==FALSE
Fixes #925.
Diffstat (limited to 'src/common/inbound.c')
-rw-r--r--src/common/inbound.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/common/inbound.c b/src/common/inbound.c
index 47fe2e00..ea7c3c9b 100644
--- a/src/common/inbound.c
+++ b/src/common/inbound.c
@@ -48,6 +48,7 @@
 #include "text.h"
 #include "ctcp.h"
 #include "hexchatc.h"
+#include "chanopt.h"
 
 
 void
@@ -583,6 +584,7 @@ inbound_ujoin (server *serv, char *chan, char *nick, char *ip,
 					const message_tags_data *tags_data)
 {
 	session *sess;
+	int found_unused = FALSE;
 
 	/* already joined? probably a bnc */
 	sess = find_channel (serv, chan);
@@ -594,6 +596,7 @@ inbound_ujoin (server *serv, char *chan, char *nick, char *ip,
 		{
 			/* find a "<none>" tab and use that */
 			sess = find_unused_session (serv);
+			found_unused = sess != NULL;
 			if (!sess)
 				/* last resort, open a new tab/window */
 				sess = new_ircwindow (serv, chan, SESS_CHANNEL, 1);
@@ -601,6 +604,11 @@ inbound_ujoin (server *serv, char *chan, char *nick, char *ip,
 	}
 
 	safe_strcpy (sess->channel, chan, CHANLEN);
+	if (found_unused)
+	{
+		chanopt_load (sess);
+		scrollback_load (sess);
+	}
 
 	fe_set_channel (sess);
 	fe_set_title (sess);