diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-09-01 15:24:39 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-09-01 15:24:39 +0000 |
commit | c843a482e64ff8ca02d8be25905887941b525f46 (patch) | |
tree | 24aef135eeb0db05357ac788e7ea4209a09a166e | |
parent | 6a5907db93c577a957fb106ce5b3279adfe8d905 (diff) | |
download | drakx-c843a482e64ff8ca02d8be25905887941b525f46.tar drakx-c843a482e64ff8ca02d8be25905887941b525f46.tar.gz drakx-c843a482e64ff8ca02d8be25905887941b525f46.tar.bz2 drakx-c843a482e64ff8ca02d8be25905887941b525f46.tar.xz drakx-c843a482e64ff8ca02d8be25905887941b525f46.zip |
(_gtk__Install_Button) no relief on 'advanced' buttons like in installer
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/mygtk2.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 45ec642d9..01a79b0c8 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -2,6 +2,7 @@ o make all windows are "dialog", so that gurpmi.addmedia during install displays nicely o fix alignment of check buttons + o no relief on 'advanced' buttons Version 11.29 - 29 August 2008 diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index 4001d7fa1..fb3b04294 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -154,7 +154,7 @@ sub _gtk__Install_Button { gtknew('Label', text => delete $opts->{text}), ], ); - $opts->{relief} = 'none' if $::isInstall; + $opts->{relief} = 'none'; _gtk__Button($w, $opts, 'Button'); } |