diff options
author | RichardHitt <rbh00@netcom.com> | 2014-04-02 16:09:13 -0700 |
---|---|---|
committer | RichardHitt <rbh00@netcom.com> | 2014-04-02 16:14:45 -0700 |
commit | 0f828dd74f9ea81fe70c8a101a7aa7c40737437a (patch) | |
tree | 2e94607cdf2fc775e8e909f8a750ea513099afdf /src/common/hexchat.c | |
parent | 5e8bc980e101f06b452d840569e255b01b220134 (diff) |
Add marker-line functionality for scrollback, instant seek.
Fixes #662.
Diffstat (limited to 'src/common/hexchat.c')
-rw-r--r-- | src/common/hexchat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/hexchat.c b/src/common/hexchat.c index 07f91cfb..8729df33 100644 --- a/src/common/hexchat.c +++ b/src/common/hexchat.c @@ -528,6 +528,8 @@ new_ircwindow (server *serv, char *name, int type, int focus) irc_init (sess); chanopt_load (sess); scrollback_load (sess); + if (sess->scrollwritten && sess->scrollback_replay_marklast) + sess->scrollback_replay_marklast (sess); plugin_emit_dummy_print (sess, "Open Context"); return sess; |