summaryrefslogtreecommitdiff
path: root/Master/texmf
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2010-06-23 15:12:24 +0000
committerNorbert Preining <preining@logic.at>2010-06-23 15:12:24 +0000
commitfd351bdb1b3fddcbb875b5e0d64398756eba374b (patch)
tree27d777cff7302ca1eef28a83ff56a51e42729221 /Master/texmf
parente8f4cbd2de48473d1fc561c7ea760e5e9da4ec99 (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/texmf')
-rw-r--r--Master/texmf/scripts/texlive/tlmgrgui.pl6
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);