##############################################################################
#
-# mh_hold_mode.pl v1.05 (20160211)
+# mh_hold_mode.pl v1.06 (20160503)
#
# Copyright (c) 2007, 2015, 2016 Michael Hansen
#
#
# history:
#
+# v1.06 (20160503)
+# fixed call to missing sub
# v1.05 (20160211)
# moved default settings from hardcoded to irssi settings _default_hold_mode and _default_scroll_always
# v1.04 (20160126)
use Irssi 20100403;
use Irssi::TextUI;
-our $VERSION = '1.05';
+our $VERSION = '1.06';
our %IRSSI =
(
'name' => 'mh_hold_mode',
'authors' => 'Michael Hansen',
'contact' => 'mh on IRCnet #help',
'url' => 'http://scripts.irssi.org / https://github.com/mh-source/irssi-scripts',
- 'changed' => 'Thu Feb 11 17:26:34 CET 2016',
+ 'changed' => 'Tue May 3 20:30:06 CEST 2016',
);
##############################################################################
}
}
-sub signal_window_changed
+sub signal_window_changed_last
{
my ($windowrec_new, $windowrec_old) = @_;
Irssi::timeout_add(1000, 'statusbar_more_redraw', undef);
+
1;
##############################################################################