From 3ea58186cc271b8264321fc28267df48b27a969c Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 13 Oct 2009 12:33:58 +0000 Subject: (run_treeview_dialog) do not display the banner when height <= 480 instead of just < 480 (#54550) --- MandrivaUpdate | 2 +- NEWS | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/MandrivaUpdate b/MandrivaUpdate index fba0ffad..7e670ec8 100755 --- a/MandrivaUpdate +++ b/MandrivaUpdate @@ -137,7 +137,7 @@ sub run_treeview_dialog { my ($list, $info, $update_button); my $rootwin_height = second(gtkroot()->get_size); - my $is_small_screen = $rootwin_height < 480; + my $is_small_screen = $rootwin_height <= 480; compute_main_window_size($w); diff --git a/NEWS b/NEWS index 133d92df..1e8b0226 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +- MandrivaUpdate: + o do not display the banner when height <= 480 instead of just < 480 + (#54550) + Version 5.21.1 - 12 October 2009, Thierry Vignaud - try harder to display help, bug wizards, ... as user -- cgit v1.2.1