aboutsummaryrefslogtreecommitdiffstats
path: root/rpmdrake
diff options
context:
space:
mode:
Diffstat (limited to 'rpmdrake')
-rwxr-xr-xrpmdrake4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpmdrake b/rpmdrake
index 82b46232..3fd95bc1 100755
--- a/rpmdrake
+++ b/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")))