diff options
author | Norbert Preining <preining@logic.at> | 2010-06-23 15:12:24 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2010-06-23 15:12:24 +0000 |
commit | fd351bdb1b3fddcbb875b5e0d64398756eba374b (patch) | |
tree | 27d777cff7302ca1eef28a83ff56a51e42729221 /Master | |
parent | e8f4cbd2de48473d1fc561c7ea760e5e9da4ec99 (diff) |
revert order of "filenames" and "descriptions" in the match block
git-svn-id: svn://tug.org/texlive/trunk@19123 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf/scripts/texlive/tlmgrgui.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui.pl index 8cc71646e66..086837e96cc 100644 --- a/Master/texmf/scripts/texlive/tlmgrgui.pl +++ b/Master/texmf/scripts/texlive/tlmgrgui.pl @@ -298,12 +298,12 @@ sub do_rest_of_gui { my $filter_match = $filter_frame->Labelframe(-text => __("Match")); $filter_match->pack(@left, @x_y, @p_ii); - $filter_match->Checkbutton(-text => __("filenames"), - -command => \&update_grid, - -variable => \$match_filenames)->pack(@a_w); $filter_match->Checkbutton(-text => __("descriptions"), -command => \&update_grid, -variable => \$match_descriptions)->pack(@a_w); + $filter_match->Checkbutton(-text => __("filenames"), + -command => \&update_grid, + -variable => \$match_filenames)->pack(@a_w); $match_entry = $filter_match->Entry(-width => 15, -validate => 'key', )->pack(@a_w, -padx => '2m', @x_x); |