diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-10-21 14:20:54 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-10-21 14:20:54 +0000 |
commit | 4452c1955c18d3c27a0f6c8498cd03a1e30aa98a (patch) | |
tree | 0508846d89048e323d4ce198d4eacfe6cc90c6e1 /Rpmdrake | |
parent | 335eacd344244f028782814034f5eca9e9e36f4b (diff) | |
download | rpmdrake-4452c1955c18d3c27a0f6c8498cd03a1e30aa98a.tar rpmdrake-4452c1955c18d3c27a0f6c8498cd03a1e30aa98a.tar.gz rpmdrake-4452c1955c18d3c27a0f6c8498cd03a1e30aa98a.tar.bz2 rpmdrake-4452c1955c18d3c27a0f6c8498cd03a1e30aa98a.tar.xz rpmdrake-4452c1955c18d3c27a0f6c8498cd03a1e30aa98a.zip |
(toggle_nodes) fix displaying big list of conflicting packages
Diffstat (limited to 'Rpmdrake')
-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 7c613326..8fc8e264 100644 --- a/Rpmdrake/gui.pm +++ b/Rpmdrake/gui.pm @@ -696,7 +696,7 @@ sub toggle_nodes { } if (my $conflicting_msg = urpm::select::conflicting_packages_msg($urpm, $urpm->{state})) { - if (!interactive_msg('', $conflicting_msg, yesno => 1)) { + if (!interactive_msg('', $conflicting_msg, yesno => 1, scroll => 1)) { @nodes_with_deps = (); $urpm->disable_selected(open_rpm_db(), $urpm->{state}, @requested); goto packages_selection_ok; |