summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2013-10-22 21:00:48 +0200
committerraveit65 <[email protected]>2013-10-22 21:00:48 +0200
commit16b52af7ce208b7bac89ad04ae4ba4cf433103fd (patch)
tree10eb9416384158e8ab99de88f32cb1c521e742da
parent10b3b45e9e1484a372c676725264ba3427948319 (diff)
downloadmate-utils-16b52af7ce208b7bac89ad04ae4ba4cf433103fd.tar.bz2
mate-utils-16b52af7ce208b7bac89ad04ae4ba4cf433103fd.tar.xz
screenshot: do not segfault when taking a window picture with no delay
-rw-r--r--mate-screenshot/mate-screenshot.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/mate-screenshot/mate-screenshot.c b/mate-screenshot/mate-screenshot.c
index cd0ed540..63ec5d9b 100644
--- a/mate-screenshot/mate-screenshot.c
+++ b/mate-screenshot/mate-screenshot.c
@@ -1368,8 +1368,17 @@ main (int argc, char *argv[])
}
else
{
- /* start this in an idle anyway and fire up the mainloop */
- g_idle_add (prepare_screenshot_timeout, NULL);
+ if (interactive_arg)
+ {
+ /* HACK: give time to the dialog to actually disappear.
+ * We don't have any way to tell when the compositor has finished
+ * re-drawing.
+ */
+ g_timeout_add (200,
+ prepare_screenshot_timeout, NULL);
+ }
+ else
+ g_idle_add (prepare_screenshot_timeout, NULL);
}
gtk_main ();