diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-03-11 12:34:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-03-11 12:34:26 +0000 |
commit | e3a11629a710b6074837df3bbc7d909c80d5c04a (patch) | |
tree | 64d7f5a1b93e916e537436bb61bd0acc1e2e956a /perl-install/Xconfig | |
parent | b24d84aea435b1ecc8a41b0bae96b4fc6f58fc49 (diff) | |
download | drakx-e3a11629a710b6074837df3bbc7d909c80d5c04a.tar drakx-e3a11629a710b6074837df3bbc7d909c80d5c04a.tar.gz drakx-e3a11629a710b6074837df3bbc7d909c80d5c04a.tar.bz2 drakx-e3a11629a710b6074837df3bbc7d909c80d5c04a.tar.xz drakx-e3a11629a710b6074837df3bbc7d909c80d5c04a.zip |
remove XFdrake icons (per dadou's request)
Diffstat (limited to 'perl-install/Xconfig')
-rw-r--r-- | perl-install/Xconfig/main.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/Xconfig/main.pm b/perl-install/Xconfig/main.pm index 4f57244b6..6aa5376a7 100644 --- a/perl-install/Xconfig/main.pm +++ b/perl-install/Xconfig/main.pm @@ -101,23 +101,23 @@ sub configure_chooser_raw { $in->ask_from_({ interactive_help_id => 'configureX_chooser', if_($::isStandalone, ok => N("Quit")) }, [ - { label => N("Graphic Card"), val => \$texts{card}, icon => "eth_card_mini", clicked => sub { + { label => N("Graphic Card"), val => \$texts{card}, clicked => sub { $may_set->('card', Xconfig::card::configure($in, $raw_X, $do_pkgs, 0, $options)); } }, - { label => N("Monitor"), val => \$texts{monitor}, icon => "ic82-systemeplus-40", clicked => sub { + { label => N("Monitor"), val => \$texts{monitor}, clicked => sub { $may_set->('monitor', Xconfig::monitor::configure($in, $raw_X)); } }, - { label => N("Resolution"), val => \$texts{resolution}, icon => "X", disabled => sub { !$X->{card} || !$X->{monitor} }, + { label => N("Resolution"), val => \$texts{resolution}, disabled => sub { !$X->{card} || !$X->{monitor} }, clicked => sub { $may_set->('resolution', Xconfig::resolution_and_depth::configure($in, $raw_X, $X->{card}, $X->{monitor})); } }, if_(Xconfig::card::check_bad_card($X->{card}) || $::isStandalone, - { val => N("Test"), icon => "warning", disabled => sub { !$X->{card} || !$X->{monitor} }, + { val => N("Test"), disabled => sub { !$X->{card} || !$X->{monitor} }, clicked => sub { $ok = Xconfig::test::test($in, $raw_X, $X->{card}, 'auto', 0); } }, ), - { val => N("Options"), icon => "ic82-tape-40", clicked => sub { + { val => N("Options"), clicked => sub { Xconfig::various::various($in, $X->{card}, $options); $X->{various} = 'done'; } }, |