diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-06-20 15:03:48 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-06-20 15:03:48 +0000 |
commit | f613df5fc7450a1c5dfb4e4d34900d03d0e1e8f3 (patch) | |
tree | b96f4ab4bbffeece407cab22f5f12128acc3375d | |
parent | 5440144abe73b09e36a83ad2c0cfe18ea294ae64 (diff) | |
download | drakx-f613df5fc7450a1c5dfb4e4d34900d03d0e1e8f3.tar drakx-f613df5fc7450a1c5dfb4e4d34900d03d0e1e8f3.tar.gz drakx-f613df5fc7450a1c5dfb4e4d34900d03d0e1e8f3.tar.bz2 drakx-f613df5fc7450a1c5dfb4e4d34900d03d0e1e8f3.tar.xz drakx-f613df5fc7450a1c5dfb4e4d34900d03d0e1e8f3.zip |
- do not let authentication module (used for ask_user_and_root) mess window size
-rw-r--r-- | perl-install/authentication.pm | 3 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rwxr-xr-x | perl-install/standalone/drakauth | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm index cdffd02ea..ab4c896f8 100644 --- a/perl-install/authentication.pm +++ b/perl-install/authentication.pm @@ -3,9 +3,6 @@ package authentication; # $Id$ use common; my $ccreds = 1; -$::real_windowwidth = 700; -$::real_windowheight = 600; - my ($authentication) = @_; sub kinds { diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index e12a9b88f..5be43bfd0 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,6 @@ - force back 75dpi to get back previous font sizes - adapt to cooker file changes +- do not let authentication module (used for ask_user_and_root) mess window size Version 10.36 - 12 June 2008 diff --git a/perl-install/standalone/drakauth b/perl-install/standalone/drakauth index 779976f52..56cf23447 100755 --- a/perl-install/standalone/drakauth +++ b/perl-install/standalone/drakauth @@ -9,6 +9,9 @@ use interactive; use authentication; use network::network; +$::real_windowwidth = 700; +$::real_windowheight = 600; + my $net = {}; network::network::read_net_conf($net); |