diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-08-23 21:22:17 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-08-23 21:22:17 +0000 |
commit | e337f9286d5eecf509bbc0d513525aa6c0d13b6d (patch) | |
tree | 0e7c254559348737d41effedcfa1bd3d07b9ad3b /perl-install/standalone/drakperm | |
parent | 9e5735a2ae1ffb1c55c4443baf585b884e18fb82 (diff) | |
download | drakx-e337f9286d5eecf509bbc0d513525aa6c0d13b6d.tar drakx-e337f9286d5eecf509bbc0d513525aa6c0d13b6d.tar.gz drakx-e337f9286d5eecf509bbc0d513525aa6c0d13b6d.tar.bz2 drakx-e337f9286d5eecf509bbc0d513525aa6c0d13b6d.tar.xz drakx-e337f9286d5eecf509bbc0d513525aa6c0d13b6d.zip |
once we start to alter settings ordering, we need to save it on exit;
so just tell it to drakperm
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 c9d78477f..4cc1ced98 100755 --- a/perl-install/standalone/drakperm +++ b/perl-install/standalone/drakperm @@ -79,6 +79,7 @@ sub move_callback { my $iter2 = $model->get_iter($path); return if !$iter2 || $model->get($iter2, 0); $model->swap($iter, $iter2); + $modified = 1; $permList->get_selection->select_iter($iter); $permList->queue_draw; } |