From ede1eacadd1ad9ca90fb1d7ee2508bce4eac3dbe Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Tue, 19 Sep 2000 16:45:48 +0000 Subject: changed `suspend' and `resume' to behave as expected. added `enter_console' and `leave_console' for install_interactive::use_fdisk --- perl-install/interactive_gtk.pm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'perl-install/interactive_gtk.pm') diff --git a/perl-install/interactive_gtk.pm b/perl-install/interactive_gtk.pm index 3a198a5dd..5335909d9 100644 --- a/perl-install/interactive_gtk.pm +++ b/perl-install/interactive_gtk.pm @@ -16,8 +16,11 @@ sub new { $::windowheight ||= 400 if $::isStandalone; goto &interactive::new; } -sub suspend { my ($o) = @_; $o->{suspended} = common::setVirtual(1) } -sub resume { my ($o) = @_; common::setVirtual(delete $o->{suspended}) } +sub enter_console { my ($o) = @_; $o->{suspended} = common::setVirtual(1) } +sub leave_console { my ($o) = @_; common::setVirtual(delete $o->{suspended}) } + +sub suspend {} +sub resume {} sub exit { gtkset_mousecursor_normal(); #- for restoring a normal in any case on standalone -- cgit v1.2.1