summaryrefslogtreecommitdiffstats
path: root/perl-install/my_gtk.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-12-09 21:37:32 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-12-09 21:37:32 +0000
commit959943551599fc1fe7e1bba59b508d8d441b448e (patch)
tree9c52ad4e0ca016f87679edfdf1410b42a071e835 /perl-install/my_gtk.pm
parentb87d2d404d5553b9bce42084b4c8cf69061a7966 (diff)
downloaddrakx-backup-do-not-use-959943551599fc1fe7e1bba59b508d8d441b448e.tar
drakx-backup-do-not-use-959943551599fc1fe7e1bba59b508d8d441b448e.tar.gz
drakx-backup-do-not-use-959943551599fc1fe7e1bba59b508d8d441b448e.tar.bz2
drakx-backup-do-not-use-959943551599fc1fe7e1bba59b508d8d441b448e.tar.xz
drakx-backup-do-not-use-959943551599fc1fe7e1bba59b508d8d441b448e.zip
remove dynamic theme choosing, and next/previous (F11/F12) handling
Diffstat (limited to 'perl-install/my_gtk.pm')
-rw-r--r--perl-install/my_gtk.pm7
1 files changed, 1 insertions, 6 deletions
diff --git a/perl-install/my_gtk.pm b/perl-install/my_gtk.pm
index 079f5d5f9..9f14368c5 100644
--- a/perl-install/my_gtk.pm
+++ b/perl-install/my_gtk.pm
@@ -224,18 +224,13 @@ sub _create_window($$) {
}
$w->signal_connect(key_press_event => sub {
my $d = ${{ 0xffbe => 'help',
- 0xffbf => 'screenshot',
- 0xffc2 => 'set_theme',
- 0xffc9 => 'next',
- 0xffc8 => 'previous' }}{$_[1]{keyval}};
+ 0xffbf => 'screenshot' }}{$_[1]{keyval}};
if ($d eq "help") {
require install_gtk;
install_gtk::create_big_help($::o);
} elsif ($::isInstall && $d eq 'screenshot') {
common::take_screenshot($o);
- } elsif ($::isInstall && $d eq 'set_theme') {
- $::setstep and die "set_theme\n"; #- set_theme is similar to setstep, don't raise one when not allowed to
} elsif (chr($_[1]{keyval}) eq 'e' && $_[1]{state} & 8) {
log::l("Switching to " . ($::expert ? "beginner" : "expert"));
$::expert = !$::expert;