diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-14 13:13:47 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-14 13:13:47 +0000 |
commit | aecd1fd020ea85226f62772701e3e612ca49b6fb (patch) | |
tree | 0ec145cd54fee6bffa8df7b6d85ba96c92b35be1 /perl-install/install_gtk.pm | |
parent | df4ba1f5dfad7c66ceeec37e5fdfb88ec12776b9 (diff) | |
download | drakx-aecd1fd020ea85226f62772701e3e612ca49b6fb.tar drakx-aecd1fd020ea85226f62772701e3e612ca49b6fb.tar.gz drakx-aecd1fd020ea85226f62772701e3e612ca49b6fb.tar.bz2 drakx-aecd1fd020ea85226f62772701e3e612ca49b6fb.tar.xz drakx-aecd1fd020ea85226f62772701e3e612ca49b6fb.zip |
fix default_theme always responding 'galaxy'
Diffstat (limited to 'perl-install/install_gtk.pm')
-rw-r--r-- | perl-install/install_gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm index c211b6ea4..b3857dea7 100644 --- a/perl-install/install_gtk.pm +++ b/perl-install/install_gtk.pm @@ -74,7 +74,7 @@ sub default_theme { sub install_theme { my ($o) = @_; - $o->{theme} ||= default_theme(); + $o->{theme} ||= default_theme($o); load_rc($o, "themes-$o->{theme}"); Gtk2::Rc->parse_string(q( |