diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | Rpmdrake/gui.pm | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,3 +1,4 @@ +- fix displaying big list of conflicting packages - fix loading options from chrooted config file Version 5.2 - 16 October 2008, Thierry Vignaud 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; |