diff options
-rwxr-xr-x | MandrivaUpdate | 4 | ||||
-rw-r--r-- | NEWS | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/MandrivaUpdate b/MandrivaUpdate index 9888031c..c45bb391 100755 --- a/MandrivaUpdate +++ b/MandrivaUpdate @@ -128,7 +128,7 @@ sub run_treeview_dialog { if_($is_small_screen, 0, getbanner()), 0, gtknew('Title2', label => N("Here is the list of software package updates")), 1, create_vpaned( - gtknew('ScrolledWindow', width => $typical_width*0.9, height => 200, + gtknew('ScrolledWindow', width => $typical_width*0.9, height => $is_small_screen ? 200 : 150, child => $list = Gtk2::SimpleList->new( " " . " " . " " => 'bool', #N("Selected") '' => 'hidden', @@ -140,7 +140,7 @@ sub run_treeview_dialog { ), gtknew('ScrolledWindow', width => $typical_width*0.9, - child => $info = Gtk2::Mdv::TextView->new, height => 190, + child => $info = Gtk2::Mdv::TextView->new, height => $is_small_screen ? 190 : 150, ), resize1 => 1, ), @@ -7,6 +7,7 @@ Version 4.9.14 - 8 May 2008, Thierry Vignaud - MandrivaUpdate: o laptop mode (height not bigger than 480): * do not display banner + * reduce Trees' height o provide --no-splash option in order to skip splash screen when run from mdkapplet (#40366) - rpmdrake: |