diff options
-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); |