summaryrefslogtreecommitdiff
path: root/src/tree.c
diff options
context:
space:
mode:
authorLucas Rocha <lucasr@gnome.org>2007-08-13 20:36:29 +0000
committerLucas Almeida Rocha <lucasr@src.gnome.org>2007-08-13 20:36:29 +0000
commit8b16d4d4122e6337517ec16b9ca22dd27df0dafb (patch)
tree4b37fe6193f44fef74d114e8c7eeeef7ab82ac4d /src/tree.c
parentae3e8d1496fcfc3bf2ca65e475455bbf4c935e50 (diff)
added timeout option to all dialogs (Fixes bug #160654). Based on patch
2007-08-13 Lucas Rocha <lucasr@gnome.org> * src/*.c: added timeout option to all dialogs (Fixes bug #160654). Based on patch from Muthiah Annamalai <gnumuthu@users.sf.net>. svn path=/trunk/; revision=1231
Diffstat (limited to 'src/tree.c')
-rw-r--r--src/tree.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tree.c b/src/tree.c
index 254ac0e..6dd3f64 100644
--- a/src/tree.c
+++ b/src/tree.c
@@ -493,6 +493,11 @@ zenity_tree (ZenityData *data, ZenityTreeData *tree_data)
}
zenity_util_show_dialog (dialog);
+
+ if(data->timeout_delay > 0) {
+ g_timeout_add (data->timeout_delay * 1000, (GSourceFunc) zenity_util_timeout_handle, NULL);
+ }
+
gtk_main ();
if (glade_dialog)