diff options
author | Norbert Preining <preining@logic.at> | 2009-12-08 11:11:39 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-12-08 11:11:39 +0000 |
commit | dbbe22cafe69bfe537bef3c89048bdab93588c1e (patch) | |
tree | 0783c4ab2409d4f53afef916f9b853d6992867e3 /Master/tlpkg/dev | |
parent | bc13381011ffaa60b55b19b6ea86fd4bbdc7f9e9 (diff) |
more fixes
git-svn-id: svn://tug.org/texlive/trunk@16328 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/dev')
-rw-r--r-- | Master/tlpkg/dev/tlmgrgui2.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/tlpkg/dev/tlmgrgui2.pl b/Master/tlpkg/dev/tlmgrgui2.pl index e850fdb83d0..710aa799c1d 100644 --- a/Master/tlpkg/dev/tlmgrgui2.pl +++ b/Master/tlpkg/dev/tlmgrgui2.pl @@ -353,7 +353,7 @@ $filter_status->Radiobutton(-text => __("installed"), -command => \&update_grid, -variable => \$status_value, -value => $status_only_installed)->pack(@a_w); $filter_status->Radiobutton(-text => __("not installed"), -command => \&update_grid, -variable => \$status_value, -value => $status_only_not_installed)->pack(@a_w); -$filter_status->Radiobutton(-text => __("with updates"), -command => \&update_grid, +$filter_status->Radiobutton(-text => __("updates"), -command => \&update_grid, -variable => \$status_value, -value => $status_only_updated)->pack(@a_w); my $filter_category = $filter_frame->Labelframe(-text => __("Category")); @@ -371,7 +371,7 @@ $filter_category->Checkbutton(-text => __("schemes"), -command => \&update_grid, my $filter_match = $filter_frame->Labelframe(-text => __("Match")); $filter_match->pack(@left, @x_y, @p_ii); my $match_string = 0; -$filter_match->Checkbutton(-text => __("matching:"), +$filter_match->Checkbutton(-text => __("pattern:"), -command => \&update_grid, -variable => \$match_string)->pack(@a_w); my $match_entry = @@ -455,8 +455,8 @@ $g->headerCreate(3, @htype, -itemtype => 'text', -text => __("Remote rev. (ver.) $g->headerCreate(4, @htype, -itemtype => 'text', -text => __("Short description")); $g->columnWidth(0, 40); -$g->columnWidth(2, -char => 15); -$g->columnWidth(3, -char => 15); +$g->columnWidth(2, -char => 20); +$g->columnWidth(3, -char => 20); setup_list(); update_grid(); |