diff options
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index e16f95678..c4305b0aa 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -577,8 +577,12 @@ sub main { $clicked = 1; redo MAIN; } - /^theme_changed$/ and redo MAIN; - unless (/^already displayed/) { + if (/^set_theme$/) { + require install_gtk; + install_gtk::install_theme($o, 'marble3d'); + redo MAIN; + } + if (!/^already displayed/) { eval { $o->errorInStep($_) }; $o->{steps}{$o->{step}}{auto} = 0; $err = $@; |