diff options
Diffstat (limited to 'Rpmdrake/gui.pm')
-rw-r--r-- | Rpmdrake/gui.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Rpmdrake/gui.pm b/Rpmdrake/gui.pm index 64b1e604..a1dd10b6 100644 --- a/Rpmdrake/gui.pm +++ b/Rpmdrake/gui.pm @@ -473,7 +473,7 @@ sub callback_choices { $choices = [ sort { $a->name cmp $b->name } @$choices ]; my @choices = interactive_list_(N("Please choose"), (scalar(@$choices) == 1 ? N("The following package is needed:") : N("One of the following packages is needed:")), - [ map { urpm_name($_) } @$choices ], $callback); + [ map { urpm_name($_) } @$choices ], $callback, nocancel => 1); $choices[0] ? $choices->[$choices[0]] : undef; } |