diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2009-01-19 10:04:22 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2009-01-19 10:04:22 +0000 |
commit | 52eea1fba1a12e34dd3a98b6a1e27e4de2939ecf (patch) | |
tree | 9859cee8091052b900ab348b06f48903726488a1 /perl-install | |
parent | 6f4c44fdc7f6215680af1bf8c407734e81a1b30c (diff) | |
download | drakx-52eea1fba1a12e34dd3a98b6a1e27e4de2939ecf.tar drakx-52eea1fba1a12e34dd3a98b6a1e27e4de2939ecf.tar.gz drakx-52eea1fba1a12e34dd3a98b6a1e27e4de2939ecf.tar.bz2 drakx-52eea1fba1a12e34dd3a98b6a1e27e4de2939ecf.tar.xz drakx-52eea1fba1a12e34dd3a98b6a1e27e4de2939ecf.zip |
oops, fix typo in previous commit
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/interactive/gtk.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm index 913c2dc11..7a939dc0c 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -509,8 +509,8 @@ sub create_widget { $w->disable_activate; ($real_w, $w) = ($w, $w->entry); } - $w->set_popdown_strings(@formatted_list); - $w->set_text(ref($e->{val}) ? may_apply($e->{format}, ${$e->{val}}) : $formatted_list[0]) if $w->isa('Gtk2::ComboBox'); + $real_w->set_popdown_strings(@formatted_list); + $real_w->set_text(ref($e->{val}) ? may_apply($e->{format}, ${$e->{val}}) : $formatted_list[0]) if $real_w->isa('Gtk2::ComboBox'); } else { $model = __create_tree_model($e); $real_w = $w = Gtk2::ComboBox->new_with_model($model); |