diff options
author | Norbert Preining <preining@logic.at> | 2010-06-24 03:00:05 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2010-06-24 03:00:05 +0000 |
commit | de83902f2fa9e9f3d4b3f8401769c2f55cd7a147 (patch) | |
tree | ce0f1588b53cdaab8f54127a755090f38b89fdec /Master/texmf | |
parent | 6e5664ddef1798ecd717697a93013a62ab2087ce (diff) |
tlmgr gui: default to match both descriptions and filenames
git-svn-id: svn://tug.org/texlive/trunk@19134 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf')
-rw-r--r-- | Master/texmf/scripts/texlive/tlmgrgui.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui.pl index 8f07ecd0125..579d7811f8e 100644 --- a/Master/texmf/scripts/texlive/tlmgrgui.pl +++ b/Master/texmf/scripts/texlive/tlmgrgui.pl @@ -312,8 +312,10 @@ sub do_rest_of_gui { -validatecommand => sub { my $new_val = shift; if (!$new_val) { $match_descriptions = 0; + $match_filenames = 0; } else { $match_descriptions = 1; + $match_filenames = 1; } update_grid(); return 1; }); @@ -344,6 +346,7 @@ sub do_rest_of_gui { $show_schemes = 1; $selection_value = 0; $match_descriptions = 0; + $match_filenames = 0; update_grid(); })->pack(@x_x, @a_c); |