diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-06-06 04:48:03 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-06-06 04:48:03 +0000 |
commit | db79a4e945e42501525c8c8f7097e8e05323e0ba (patch) | |
tree | bbdaa97c76ae04431edf9729ee5a0d4f9bb65e3e | |
parent | 8d386af91d0e8edf32e658f03c49e290e9e28d70 (diff) | |
download | drakx-db79a4e945e42501525c8c8f7097e8e05323e0ba.tar drakx-db79a4e945e42501525c8c8f7097e8e05323e0ba.tar.gz drakx-db79a4e945e42501525c8c8f7097e8e05323e0ba.tar.bz2 drakx-db79a4e945e42501525c8c8f7097e8e05323e0ba.tar.xz drakx-db79a4e945e42501525c8c8f7097e8e05323e0ba.zip |
really consider text box values
-rwxr-xr-x | perl-install/standalone/draksplash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/draksplash b/perl-install/standalone/draksplash index db1a20aaa..8736a7c3e 100755 --- a/perl-install/standalone/draksplash +++ b/perl-install/standalone/draksplash @@ -271,7 +271,7 @@ sub switch_to_mode { if ($current_mode == 0) { #- silent $current_rect = bootsplash::xywh2rectangle(@{$theme{conf}}{'px', 'py', 'pw', 'ph'}); } else { #- verbose or console - $current_rect = bootsplash::xywh2rectangle(@{$theme{conf}}{'px', 'py', 'pw', 'ph'}); + $current_rect = bootsplash::xywh2rectangle(@{$theme{conf}}{'tx', 'ty', 'tw', 'th'}); } undef $current_point; $image_area->queue_draw; |