diff options
author | Norbert Preining <preining@logic.at> | 2010-06-03 05:22:37 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2010-06-03 05:22:37 +0000 |
commit | fc76fc117921f8a7a254675daa1362c530ccb2df (patch) | |
tree | 842c826375dabefacf44c485c7a7ea137fde3841 /Master/texmf/scripts | |
parent | 5dc3345763a98cca1a938a5a89dd2b56095ef7f7 (diff) |
tlmgr gui: add separate "Load default" button in the main screen
git-svn-id: svn://tug.org/texlive/trunk@18708 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf/scripts')
-rw-r--r-- | Master/texmf/scripts/texlive/tlmgrgui.pl | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui.pl index 683dec5a7cc..502df3165d4 100644 --- a/Master/texmf/scripts/texlive/tlmgrgui.pl +++ b/Master/texmf/scripts/texlive/tlmgrgui.pl @@ -255,13 +255,15 @@ sub do_rest_of_gui { -selectmode => "none"); my $button_frame = $mw->Frame; - $loaded_text = $button_frame->Label(-text => __("none")); + $button_frame->Button(-text => __("Load default"), + -command => sub { setup_location($tlpdb_location); })->pack( + -anchor => 'e', -padx => 0, -pady => 0, + -ipadx => 0, -ipady => 0, -side => 'right'); + $loaded_text = $button_frame->Label( + -text => __("Loaded repository:") . " " .__("none")); $loaded_text->pack(-anchor => 'e', -padx => 0, -pady => 0, -ipadx => 0, -ipady => 0, -side => 'right'); - my $loaded_button = $button_frame->Button(-text => __("Loaded repository:"), - -command => sub { setup_location($tlpdb_location); }); - $loaded_button->pack(-anchor => 'e', -padx => 0, -pady => 0, - -ipadx => 0, -ipady => 0, -side => 'right'); + $button_frame->pack(-expand => 1, -fill => 'x', @p_ii); #my $top_frame = $mw->Labelframe(-text => __("Display configuration")); |