summaryrefslogtreecommitdiff
path: root/src/color.c
diff options
context:
space:
mode:
authorArx Cruz <arxcruz@src.gnome.org>2011-06-16 11:07:58 -0300
committerArx Cruz <arxcruz@src.gnome.org>2011-06-16 11:34:01 -0300
commitb39ad33c35bb93c647e7f6f05d1310a0ce6895d5 (patch)
tree9033edbaf0a4290748b190d8497142594352bafc /src/color.c
parentFix bug 651723, don't look for libnotify.h if not requested (diff)
downloadzenity-b39ad33c35bb93c647e7f6f05d1310a0ce6895d5.tar.gz
zenity-b39ad33c35bb93c647e7f6f05d1310a0ce6895d5.tar.bz2
zenity-b39ad33c35bb93c647e7f6f05d1310a0ce6895d5.zip
Bug 651948 - zenity list does not return default value when timeout is over
Diffstat (limited to 'src/color.c')
-rw-r--r--src/color.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/color.c b/src/color.c
index 8f31937f..eee68ee7 100644
--- a/src/color.c
+++ b/src/color.c
@@ -64,7 +64,7 @@ void zenity_colorselection (ZenityData *data, ZenityColorData *color_data)
if (data->timeout_delay > 0) {
g_timeout_add (data->timeout_delay * 1000,
(GSourceFunc) zenity_util_timeout_handle,
- NULL);
+ dialog);
}
gtk_main();
bgstack15