diff options
Diffstat (limited to 'src/themes/nodoka')
-rw-r--r-- | src/themes/nodoka/nodoka-theme.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/themes/nodoka/nodoka-theme.c b/src/themes/nodoka/nodoka-theme.c index ac99033..4d3a2a1 100644 --- a/src/themes/nodoka/nodoka-theme.c +++ b/src/themes/nodoka/nodoka-theme.c @@ -27,6 +27,7 @@ #include <glib/gi18n.h> #include <gtk/gtk.h> +#include <gdk/gdkx.h> /* Define basic nodoka types */ typedef void (*ActionInvokedCb)(GtkWindow *nw, const char *key); @@ -137,8 +138,8 @@ get_notification_arrow_type(GtkWidget *nw) WindowData *windata = g_object_get_data(G_OBJECT(nw), "windata"); int screen_height; - gdk_window_get_geometry (gdk_screen_get_root_window (gdk_window_get_screen (gtk_widget_get_window (nw))), - NULL, NULL, NULL, &screen_height); + screen_height = HeightOfScreen (gdk_x11_screen_get_xscreen ( + gdk_window_get_screen (gtk_widget_get_window (nw)))); if (windata->arrow.position.y + windata->height + DEFAULT_ARROW_HEIGHT > screen_height) @@ -159,8 +160,8 @@ set_arrow_parameters (WindowData *windata) int x,y; GtkArrowType arrow_type; - gdk_window_get_geometry (gdk_screen_get_root_window (gdk_window_get_screen (gtk_widget_get_window (windata->win))), - NULL, NULL, &screen_width, NULL); + screen_width = WidthOfScreen (gdk_x11_screen_get_xscreen ( + gdk_window_get_screen (gtk_widget_get_window (windata->win)))); /* Set arrow offset */ GtkAllocation alloc; |