diff options
-rw-r--r-- | Master/texmf/scripts/texlive/tlmgrgui.pl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui.pl index c21882d9fab..df7d90c7682 100644 --- a/Master/texmf/scripts/texlive/tlmgrgui.pl +++ b/Master/texmf/scripts/texlive/tlmgrgui.pl @@ -231,7 +231,6 @@ sub do_rest_of_gui { -ipadx => 0, -ipady => 0); my $top_frame = $mw->Labelframe(-text => __("Display configuration")); - $top_frame->pack(-fill => 'x', -padx => '2m'); my $filter_frame = $top_frame->Frame(); $filter_frame->pack; @@ -304,7 +303,6 @@ sub do_rest_of_gui { })->pack(@x_x, @a_c); ########## Packages ####################### - $list_frame->pack(@x_xy, @p_ii); $g->pack(qw/-expand 1 -fill both -padx 3 -pady 3/); $g->focus; @@ -325,7 +323,6 @@ $g->headerCreate(4, @htype, -itemtype => 'text', -text => __("Short description" $g->columnWidth(3, -char => 20); my $bot_frame = $mw->Frame; - $bot_frame->pack(-fill => 'x', @p_ii); my $actions_frame = $bot_frame->Frame; $actions_frame->pack(); @@ -361,9 +358,14 @@ $g->headerCreate(4, @htype, -itemtype => 'text', -text => __("Short description" -state => $::action_button_state, -command => sub { backup_selected_packages(); } )->pack(@left, @p_ii); -} + + $top_frame->pack(-fill => 'x', -padx => '2m'); + $bot_frame->pack(-fill => 'x', @p_ii, -side => 'bottom'); + $list_frame->pack(@x_xy, @p_ii); +} + ########### LOGGING ETC FUNCTIONS ############# sub update_status_box { |