summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xperl-install/standalone/draksplash2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/draksplash b/perl-install/standalone/draksplash
index 703896be4..6cf84790f 100755
--- a/perl-install/standalone/draksplash
+++ b/perl-install/standalone/draksplash
@@ -390,7 +390,7 @@ sub mk_frame {
if ($ref->{widget}{combo}{$1}) {
@popdown = @{$ref->{widget}{combo}{$1}};
my $w = $ref->{widgets}{combo}{$1} = $ref->{widget}{extras}{$1}{noneditable} ? Gtk2::ComboBox->new_text : Gtk2::Combo->new;
- $ref->{widgets}{combo}{$1}->set_popdown_strings(@popdown);
+ $w->set_popdown_strings(@popdown);
$w->set_active(0) if $w->isa('Gtk2::ComboBox');
push @widgets, $w;
}