summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormonsta <[email protected]>2017-04-27 14:58:50 +0300
committermonsta <[email protected]>2017-04-27 15:16:17 +0300
commit817d711672de86af0f5cf5c8963f46bfc6405bb6 (patch)
tree226f9958bb9bf3fbdcd641ababbf2f0bb542d23b
parent08828d693e0e39f0eac3151c18ed647e65ae1655 (diff)
downloadmate-utils-817d711672de86af0f5cf5c8963f46bfc6405bb6.tar.bz2
mate-utils-817d711672de86af0f5cf5c8963f46bfc6405bb6.tar.xz
mate-screenshot: fix showing busy cursor when saving area screenshot
invalid cast from plain struct to GtkWidget was causing a heap of runtime warnings when saving area screenshot, and no busy cursor was shown. fallout from 7d859a9e17f0c4f0b790e8b2a3d8ac25481d7fe6...
-rw-r--r--mate-screenshot/src/screenshot-dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mate-screenshot/src/screenshot-dialog.c b/mate-screenshot/src/screenshot-dialog.c
index cb9ffc33..3e120061 100644
--- a/mate-screenshot/src/screenshot-dialog.c
+++ b/mate-screenshot/src/screenshot-dialog.c
@@ -355,7 +355,7 @@ screenshot_dialog_set_busy (ScreenshotDialog *dialog,
GdkDisplay *display;
toplevel = screenshot_dialog_get_toplevel (dialog);
- display = gtk_widget_get_display (GTK_WIDGET (dialog));
+ display = gtk_widget_get_display (toplevel);
if (busy)
{