diff options
Diffstat (limited to 'MageiaUpdate')
-rwxr-xr-x | MageiaUpdate | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MageiaUpdate b/MageiaUpdate index 4cfe8fec..5358a7c4 100755 --- a/MageiaUpdate +++ b/MageiaUpdate @@ -263,7 +263,7 @@ sub run_treeview_dialog { my $cell = ($bool_col->get_cell_renderers)[0]; $cell->signal_connect(toggled => sub { my ($_cell, $text_path) = @_; - my $name = @{$list->{data}[$text_path]}[$pkg_columns{text}]; + my $name = $list->{data}[$text_path][$pkg_columns{text}]; gtkset_mousecursor_wait($w->{real_window}->window); my $_guard = before_leaving(sub { gtkset_mousecursor_normal($w->{real_window}->window) }); toggle($list, $name); |