diff options
author | ZenWalker <[email protected]> | 2017-08-07 20:33:08 +0200 |
---|---|---|
committer | lukefromdc <[email protected]> | 2017-08-13 14:34:57 -0400 |
commit | 7b2bc7d9f98c6ba8c2c31bdf9605faadb42a7e0e (patch) | |
tree | b463e4d5b37eaf2e9c34b8b536c2164a6aab5a5b /applets/clock/clock.c | |
parent | 8a8ca9c24c7b4d9bec8666dd9a17c5541106bd7e (diff) | |
download | mate-panel-7b2bc7d9f98c6ba8c2c31bdf9605faadb42a7e0e.tar.bz2 mate-panel-7b2bc7d9f98c6ba8c2c31bdf9605faadb42a7e0e.tar.xz |
avoid deprecated gdk_screen_get_width/height
Diffstat (limited to 'applets/clock/clock.c')
-rw-r--r-- | applets/clock/clock.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/applets/clock/clock.c b/applets/clock/clock.c index a1c16159..0a325b63 100644 --- a/applets/clock/clock.c +++ b/applets/clock/clock.c @@ -914,8 +914,9 @@ position_calendar_popup (ClockData *cd) monitors */ monitor.x = 0; monitor.y = 0; - monitor.width = gdk_screen_get_width (screen); - monitor.height = gdk_screen_get_height (screen); + + gdk_window_get_geometry (gdk_screen_get_root_window (screen), NULL, NULL, + &monitor.width, &monitor.height); } /* Based on panel orientation, position the popup. |