diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-07-06 18:00:44 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-07-06 18:00:44 +0000 |
commit | 37af076e7dd776eb86e3c51f1708b15378c7f071 (patch) | |
tree | c43fc913422f05465b6b830f3c644981594a1f1e /perl-install/standalone/drakperm | |
parent | 8bcf945dbec5accd4011940ad8a166d19145d8f1 (diff) | |
download | drakx-37af076e7dd776eb86e3c51f1708b15378c7f071.tar drakx-37af076e7dd776eb86e3c51f1708b15378c7f071.tar.gz drakx-37af076e7dd776eb86e3c51f1708b15378c7f071.tar.bz2 drakx-37af076e7dd776eb86e3c51f1708b15378c7f071.tar.xz drakx-37af076e7dd776eb86e3c51f1708b15378c7f071.zip |
let columns be sortable (lmontel request)
Diffstat (limited to 'perl-install/standalone/drakperm')
-rwxr-xr-x | perl-install/standalone/drakperm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/standalone/drakperm b/perl-install/standalone/drakperm index 3a9c27205..2cdb6ca4d 100755 --- a/perl-install/standalone/drakperm +++ b/perl-install/standalone/drakperm @@ -40,6 +40,7 @@ my @column_sizes = (150, 100, 100, 15, -1); each_index { my $col = Gtk2::TreeViewColumn->new_with_attributes($_, Gtk2::CellRendererText->new, 'text' => $::i); $col->set_min_width($column_sizes[$::i]); + $col->set_sort_column_id($::i); $permList->append_column($col); } (N("path"), N("user"), N("group"), N("permissions")); |