diff options
author | Antoine Ginies <aginies@mandriva.com> | 2005-07-07 01:45:52 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2005-07-07 01:45:52 +0000 |
commit | 156bdd81bbdecb1dde634d62a61ca8c0cdfc6d1e (patch) | |
tree | fe2407d7fa91e81c9264a55c56691c14f4525ed0 /perl-install/standalone/draknfs | |
parent | 6fd7051f446c2ccfc8462417b577453ccbbbc727 (diff) | |
download | drakx-156bdd81bbdecb1dde634d62a61ca8c0cdfc6d1e.tar drakx-156bdd81bbdecb1dde634d62a61ca8c0cdfc6d1e.tar.gz drakx-156bdd81bbdecb1dde634d62a61ca8c0cdfc6d1e.tar.bz2 drakx-156bdd81bbdecb1dde634d62a61ca8c0cdfc6d1e.tar.xz drakx-156bdd81bbdecb1dde634d62a61ca8c0cdfc6d1e.zip |
add an apply button
Diffstat (limited to 'perl-install/standalone/draknfs')
-rw-r--r-- | perl-install/standalone/draknfs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/perl-install/standalone/draknfs b/perl-install/standalone/draknfs index 06df2f240..9e30b8a87 100644 --- a/perl-install/standalone/draknfs +++ b/perl-install/standalone/draknfs @@ -407,7 +407,7 @@ sub add_modify_entry { COLUMN_OPTIONS, $listshare[$i]{options}, ); $dialog->destroy; - write_conf(); +# write_conf(); }, }, ), @@ -427,7 +427,7 @@ sub remove_entry { $model->remove($iter); splice @listshare, $i, 1; } - write_conf(); +# write_conf(); } sub create_model() { @@ -556,6 +556,10 @@ $W->add(gtkpack_(Gtk2::VBox->new(0,0), err_dialog(N("Error"), N("Failed to remove an NFS share.") . "\n\n" . $err); } }), + 0, gtksignal_connect(Gtk2::Button->new(N("Apply")), clicked => sub { + write_conf(); + }), + if_($::isEmbedded, 0, gtksignal_connect(Gtk2::Button->new(N("Quit")), clicked => \&quit_all)), ), ), |