diff options
Diffstat (limited to 'MandrivaUpdate')
-rwxr-xr-x | MandrivaUpdate | 4 |
1 files changed, 2 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, ), |