diff options
author | ZenWalker <[email protected]> | 2017-08-08 02:43:13 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-08-13 10:56:16 +0200 |
commit | 52b7c3807e71278f2d902a79cf6c08c839a1b0ad (patch) | |
tree | d7d79401700839d52a50309418b309baa8ca05e7 /src/themes | |
parent | c11a2ac7a568b83fb0327e831519981a465bc51f (diff) | |
download | mate-notification-daemon-52b7c3807e71278f2d902a79cf6c08c839a1b0ad.tar.bz2 mate-notification-daemon-52b7c3807e71278f2d902a79cf6c08c839a1b0ad.tar.xz |
avoid deprecated gdk_screen_get_width/height
Diffstat (limited to 'src/themes')
-rw-r--r-- | src/themes/nodoka/nodoka-theme.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/themes/nodoka/nodoka-theme.c b/src/themes/nodoka/nodoka-theme.c index d3329b2..ac99033 100644 --- a/src/themes/nodoka/nodoka-theme.c +++ b/src/themes/nodoka/nodoka-theme.c @@ -137,8 +137,8 @@ get_notification_arrow_type(GtkWidget *nw) WindowData *windata = g_object_get_data(G_OBJECT(nw), "windata"); int screen_height; - screen_height = gdk_screen_get_height( - gdk_window_get_screen(gtk_widget_get_window(nw))); + gdk_window_get_geometry (gdk_screen_get_root_window (gdk_window_get_screen (gtk_widget_get_window (nw))), + NULL, NULL, NULL, &screen_height); if (windata->arrow.position.y + windata->height + DEFAULT_ARROW_HEIGHT > screen_height) @@ -159,8 +159,8 @@ set_arrow_parameters (WindowData *windata) int x,y; GtkArrowType arrow_type; - screen_width = gdk_screen_get_width( - gdk_window_get_screen(gtk_widget_get_window(windata->win))); + gdk_window_get_geometry (gdk_screen_get_root_window (gdk_window_get_screen (gtk_widget_get_window (windata->win))), + NULL, NULL, &screen_width, NULL); /* Set arrow offset */ GtkAllocation alloc; |