From 6d94559673232a1dc01d16eacbe2028aae175d07 Mon Sep 17 00:00:00 2001 From: ZenWalker Date: Thu, 10 Aug 2017 17:17:56 +0200 Subject: avoid deprecated gdk_screen_width/height --- src/procman.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/procman.cpp b/src/procman.cpp index ea50cb2..f0dd09d 100644 --- a/src/procman.cpp +++ b/src/procman.cpp @@ -343,8 +343,9 @@ procman_data_new (GSettings *settings) g_free (color); /* Sanity checks */ - swidth = gdk_screen_width (); - sheight = gdk_screen_height (); + gdk_window_get_geometry (gdk_screen_get_root_window (gdk_screen_get_default()), + NULL, NULL, &swidth, &sheight); + pd->config.width = CLAMP (pd->config.width, 50, swidth); pd->config.height = CLAMP (pd->config.height, 50, sheight); pd->config.update_interval = MAX (pd->config.update_interval, 1000); -- cgit v1.2.1