diff options
-rw-r--r-- | NEWS | 3 | ||||
-rwxr-xr-x | rpmdrake | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -1,3 +1,6 @@ +- rpmdrake: + o save "Compute updates on startup" setting + Version 5.16.2 - 30 April 2009, Thierry Vignaud - rpmdrake: @@ -566,7 +566,7 @@ sub run_treeview_dialog { $dont_show_selections->[0] = !$checkbox_show_autoselect->get_active; }, undef, '<CheckItem>' ], [ $updates_string, undef, sub { - $::rpmdrake_options{compute_updates} = $check_boxes{$updates_string}->get_active; + $compute_updates = $check_boxes{$updates_string}->get_active; }, undef, '<CheckItem>' ], ), [ N("/_View"), undef, undef, undef, '<Branch>' ], @@ -619,7 +619,7 @@ sub run_treeview_dialog { $_ => $factory->get_widget("<main>" . $get_path->($_)); } ($auto_string, $noclean_string, $updates_string); $check_boxes{$auto_string}->set_active($::rpmdrake_options{auto}) if !$>; - $check_boxes{$updates_string}->set_active($::rpmdrake_options{compute_updates}) if !$>; + $check_boxes{$updates_string}->set_active($compute_updates) if !$>; $check_boxes{$noclean_string}->set_active(!$::noclean); $checkbox_show_autoselect = $factory->get_widget("<main>" . strip_first_underscore(N("/_Options"), N("/_Show automatically selected packages"))) |