diff options
-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'); } |