diff options
author | Pascal Terjan <pterjan@mageia.org> | 2011-12-22 22:09:04 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2011-12-22 22:09:04 +0000 |
commit | 7ca2c969b3b39da4da40d76f5f323ccc8b800a64 (patch) | |
tree | f3a7cefb690598d0747f297cb8d521f0149b8587 /perl-install/interactive | |
parent | 5cc25a2071b000fae9c4af158f46d1c0b2d7dd75 (diff) | |
download | drakx-7ca2c969b3b39da4da40d76f5f323ccc8b800a64.tar drakx-7ca2c969b3b39da4da40d76f5f323ccc8b800a64.tar.gz drakx-7ca2c969b3b39da4da40d76f5f323ccc8b800a64.tar.bz2 drakx-7ca2c969b3b39da4da40d76f5f323ccc8b800a64.tar.xz drakx-7ca2c969b3b39da4da40d76f5f323ccc8b800a64.zip |
interactive::curses: default to 80x25 (fixes serial)
Diffstat (limited to 'perl-install/interactive')
-rw-r--r-- | perl-install/interactive/curses.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/perl-install/interactive/curses.pm b/perl-install/interactive/curses.pm index cdcb6fe7f..2015c38de 100644 --- a/perl-install/interactive/curses.pm +++ b/perl-install/interactive/curses.pm @@ -32,6 +32,13 @@ sub new { open STDERR, ">", common::secured_file($stderr_file); $cui ||= Curses::UI->new('-color_support' => 1); + + # Set some default terminal size, for serial install + unless ($cui->{-width}) { + $cui->{-width} = $cui->{-w} = $cui->{-bw} = 80; + $cui->{-height} = $cui->{-h} = $cui->{-bh} = 25; + } + bless { cui => $cui }, $class; } |