diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-03-16 16:13:20 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-03-16 16:13:20 +0000 |
commit | c0952e072ad1464848ca0914a2d3893312d955e0 (patch) | |
tree | 7c5a107e31ceb565471729b5c4585ce49320ef53 /perl-install/interactive/gtk.pm | |
parent | 3693c7f1417b6ae1fc81cdf344ddf705fb37ba7d (diff) | |
download | drakx-c0952e072ad1464848ca0914a2d3893312d955e0.tar drakx-c0952e072ad1464848ca0914a2d3893312d955e0.tar.gz drakx-c0952e072ad1464848ca0914a2d3893312d955e0.tar.bz2 drakx-c0952e072ad1464848ca0914a2d3893312d955e0.tar.xz drakx-c0952e072ad1464848ca0914a2d3893312d955e0.zip |
(ask_fromW) remove unecessary sync (which was needed to workaround
CList bug but now make TreeViews breaking CheckBoxes)
Diffstat (limited to 'perl-install/interactive/gtk.pm')
-rw-r--r-- | perl-install/interactive/gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm index 5d35da376..457368750 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -619,7 +619,7 @@ sub ask_fromW { $advanced ? $w->show : $w->hide; } @widgets = (@widgets_always, if_($advanced, @widgets_advanced)); - $mainw->sync; #- for $set_all below (mainly for the set of clist) + #$mainw->sync; #- for $set_all below (mainly for the set of clist) $first_time = 0; $set_all->(); #- must be done when showing advanced lists (to center selected value) }; |