diff options
Diffstat (limited to 'src/procman.cpp')
-rw-r--r-- | src/procman.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
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); |