diff options
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/draksplash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/draksplash b/perl-install/standalone/draksplash index 83625ea08..57222eaec 100755 --- a/perl-install/standalone/draksplash +++ b/perl-install/standalone/draksplash @@ -384,7 +384,7 @@ sub mk_frame { my @popdown; if ($ref->{widget}{combo}{$1}) { @popdown = @{$ref->{widget}{combo}{$1}}; - $ref->{widgets}{combo}{$1} = new Gtk2::Combo; + $ref->{widgets}{combo}{$1} = $ref->{widget}{extras}{$1}{noneditable} ? Gtk2::OptionMenu->new : Gtk2::Combo->new; $hboxes{$key}->add($ref->{widgets}{combo}{$1}); $ref->{widgets}{combo}{$1}->set_popdown_strings(@popdown); } |