diff options
author | Timo Sirainen <cras@irssi.org> | 2001-08-14 11:24:11 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-08-14 11:24:11 +0000 |
commit | 87a439e99412e2f9c285221da669c15a1e8e5034 (patch) | |
tree | 7971c4aead64b560c77b6291b95fc43a47f12a2d /src/perl/textui | |
parent | 5694dbfdb74861b4483d2e3b35f2e292fe7a2840 (diff) | |
download | irssi-87a439e99412e2f9c285221da669c15a1e8e5034.zip |
Irssi::TextUI::TextBufferVew should also contain the scroll..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1755 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/textui')
-rw-r--r-- | src/perl/textui/TextUI.xs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/perl/textui/TextUI.xs b/src/perl/textui/TextUI.xs index e003b49c..2fedc904 100644 --- a/src/perl/textui/TextUI.xs +++ b/src/perl/textui/TextUI.xs @@ -28,6 +28,7 @@ static void perl_text_buffer_view_fill_hash(HV *hv, TEXT_BUFFER_VIEW_REC *view) hv_store(hv, "default_indent", 14, newSViv(view->default_indent), 0); hv_store(hv, "longword_noindent", 17, newSViv(view->longword_noindent), 0); + hv_store(hv, "scroll", 6, newSViv(view->scroll), 0); hv_store(hv, "ypos", 4, newSViv(view->ypos), 0); |