diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-03-17 17:41:58 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-03-17 17:41:58 +0000 |
commit | e060c8f48ae9310d66aefbd51efae8e93fceb407 (patch) | |
tree | 1c4d2bc3a41ec7f8a6773c074a655a774419becd /bin | |
parent | 30a395e9d16238652d45eb8c3b4d81a1853f4265 (diff) | |
download | drakguard-e060c8f48ae9310d66aefbd51efae8e93fceb407.tar drakguard-e060c8f48ae9310d66aefbd51efae8e93fceb407.tar.gz drakguard-e060c8f48ae9310d66aefbd51efae8e93fceb407.tar.bz2 drakguard-e060c8f48ae9310d66aefbd51efae8e93fceb407.tar.xz drakguard-e060c8f48ae9310d66aefbd51efae8e93fceb407.zip |
remove close buttons (there is already a cancel button)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/drakguard | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bin/drakguard b/bin/drakguard index 05078a3..3ed3c01 100755 --- a/bin/drakguard +++ b/bin/drakguard @@ -107,7 +107,6 @@ gtkadd($w->{window}, 1, gtknew('ScrolledWindow', width => 500, height => 300, child => $blacklist), 0, gtknew('HButtonBox', border_width => 5, layout => 'edge', children_loose => [ gtknew('Button', text => N("Remove from blacklist"), clicked => sub { unblacklist(get_selected_blacklist()) }), - gtknew('Button', text => N("Close"), clicked => sub { Gtk2->main_quit }) ]), ]), gtknew('Label', text => N("Whitelist")), @@ -115,7 +114,6 @@ gtkadd($w->{window}, 1, gtknew('ScrolledWindow', width => 500, height => 300, child => $whitelist), 0, gtknew('HButtonBox', border_width => 5, layout => 'edge', children_loose => [ gtknew('Button', text => N("Remove from whitelist"), clicked => sub { unwhitelist(get_selected_whitelist()) }), - gtknew('Button', text => N("Close"), clicked => sub { Gtk2->main_quit }) ]), ]), ]), |