diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-07-20 11:31:35 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-07-20 11:31:35 +0000 |
commit | ed51e563ea834b9640402ce4a5e77a97d661f090 (patch) | |
tree | 7bd6813ec5a869f6284cfeea9b497bac9df98b73 | |
parent | f0051525d3ba8c624276cdee9b3e3a1cf44671a1 (diff) | |
download | drakx-ed51e563ea834b9640402ce4a5e77a97d661f090.tar drakx-ed51e563ea834b9640402ce4a5e77a97d661f090.tar.gz drakx-ed51e563ea834b9640402ce4a5e77a97d661f090.tar.bz2 drakx-ed51e563ea834b9640402ce4a5e77a97d661f090.tar.xz drakx-ed51e563ea834b9640402ce4a5e77a97d661f090.zip |
icons are really nicer with 24x24 resolution
-rw-r--r-- | perl-install/standalone/net_applet | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/net_applet b/perl-install/standalone/net_applet index c590bd0b0..7985aac74 100644 --- a/perl-install/standalone/net_applet +++ b/perl-install/standalone/net_applet @@ -37,10 +37,10 @@ my %pixbufs = state => { map { $_ => gtkcreate_pixbuf($_) } qw(connected disconnected) }, link_level => { map { my $f = "./wifi-$_.png"; - my $pixbuf = gtkcreate_pixbuf(-r $f ? $f : 'default')->scale_simple(16, 16, 'hyper'); + my $pixbuf = gtkcreate_pixbuf(-r $f ? $f : 'default')->scale_simple(24, 24, 'hyper'); $_ => $pixbuf; } qw(20 40 60 80 100) }, - keyring => gtkcreate_pixbuf("/usr/share/pixmaps/keyring-small.png")->scale_simple(16, 16, 'hyper'), #- provided by usermode, required by drakxtools + keyring => gtkcreate_pixbuf("/usr/share/pixmaps/keyring-small.png")->scale_simple(24, 24, 'hyper'), #- provided by usermode, required by drakxtools ); my %wireless_networks; my %tooltips = |