From 8d737c695f37a5bb0ad5ded56a44777249624cea Mon Sep 17 00:00:00 2001 From: Pablo Barciela Date: Wed, 6 Dec 2017 01:03:11 +0100 Subject: WidthOfScreen and HeightOfScreen implementation This commit reverts: https://github.com/mate-desktop/mate-control-center/commit/fe782c673262e861334bb48265abf5075ff02680 https://github.com/mate-desktop/mate-control-center/commit/061f3780a3af6224a804d239f9b9dfc5c81873f6 And it applies an alternative to fix the deprecated functions: gdk_screen_get_width gdk_screen_get_height gdk_screen_width gdk_screen_height --- libslab/app-shell.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'libslab/app-shell.c') diff --git a/libslab/app-shell.c b/libslab/app-shell.c index 2c7ec9fc..78e1b6a9 100644 --- a/libslab/app-shell.c +++ b/libslab/app-shell.c @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include @@ -256,7 +257,6 @@ layout_shell (AppShellData * app_data, const gchar * filter_title, const gchar * GtkWidget *left_vbox; GtkWidget *right_vbox; gint num_cols; - gint sc_width; GtkWidget *sw; GtkAdjustment *adjustment; @@ -266,13 +266,10 @@ layout_shell (AppShellData * app_data, const gchar * filter_title, const gchar * right_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); - gdk_window_get_geometry (gdk_screen_get_root_window (gdk_screen_get_default()), - NULL, NULL, &sc_width, NULL); - num_cols = SIZING_SCREEN_WIDTH_LARGE_NUMCOLS; - if (sc_width <= SIZING_SCREEN_WIDTH_LARGE) + if (WidthOfScreen (gdk_x11_screen_get_xscreen (gdk_screen_get_default ())) <= SIZING_SCREEN_WIDTH_LARGE) { - if (sc_width <= SIZING_SCREEN_WIDTH_MEDIUM) + if (WidthOfScreen (gdk_x11_screen_get_xscreen (gdk_screen_get_default ())) <= SIZING_SCREEN_WIDTH_MEDIUM) num_cols = SIZING_SCREEN_WIDTH_SMALL_NUMCOLS; else num_cols = SIZING_SCREEN_WIDTH_MEDIUM_NUMCOLS; -- cgit v1.2.1