aboutsummaryrefslogtreecommitdiffstats
path: root/MandrivaUpdate
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2009-10-13 12:33:58 +0000
committerThierry Vignaud <tv@mandriva.org>2009-10-13 12:33:58 +0000
commit3ea58186cc271b8264321fc28267df48b27a969c (patch)
tree3e09b6b6b04502445e4f686d7237bab0eabe437b /MandrivaUpdate
parent06323699459140c21fe0ddc764ce6a9378fd8040 (diff)
downloadrpmdrake-3ea58186cc271b8264321fc28267df48b27a969c.tar
rpmdrake-3ea58186cc271b8264321fc28267df48b27a969c.tar.gz
rpmdrake-3ea58186cc271b8264321fc28267df48b27a969c.tar.bz2
rpmdrake-3ea58186cc271b8264321fc28267df48b27a969c.tar.xz
rpmdrake-3ea58186cc271b8264321fc28267df48b27a969c.zip
(run_treeview_dialog) do not display the banner when height <= 480
instead of just < 480 (#54550)
Diffstat (limited to 'MandrivaUpdate')
-rwxr-xr-xMandrivaUpdate2
1 files changed, 1 insertions, 1 deletions
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);