diff options
-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); |