diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | gurpmi2 | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ - gurpmi: + o add scrollbar for long one liner messages (mga#5118) o wrap big messages (mga#5118) - urpmq: minor documentation fix (mga#7166) @@ -151,7 +151,7 @@ sub configure_urpm() { } my $nb_lines = $message =~ tr/\n/\n/; my $w; - if ($nb_lines > 30) { + if ($nb_lines > 30 || $message =~ /^transaction is too small/) { $w = Gtk2::Dialog->new(N("Warning"), $mainw, [qw(modal destroy-with-parent)], N("Ok"), 'ok'); $w->vbox->add(my $f = Gtk2::Frame->new); my $sw = create_scrolled_window(my $text = Gtk2::TextView->new); |