diff options
author | Pablo Barciela <[email protected]> | 2017-12-07 01:37:08 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-12-17 12:22:49 +0100 |
commit | 10b38211e032738593dfe71176289c275956b476 (patch) | |
tree | 26b8b3026ca845e790439449f720c5611747f9ec /applets/clock | |
parent | 54a0b4dcb0b2462eea51cdbcbe8306f25e8e4cea (diff) | |
download | mate-panel-10b38211e032738593dfe71176289c275956b476.tar.bz2 mate-panel-10b38211e032738593dfe71176289c275956b476.tar.xz |
WidthOfScreen and HeightOfScreen implementation
This commit reverts:
https://github.com/mate-desktop/mate-panel/commit/7b2bc7d9f98c6ba8c2c31bdf9605faadb42a7e0e
And it applies an alternative to fix the deprecated functions:
gdk_screen_get_width
gdk_screen_get_height
Diffstat (limited to 'applets/clock')
-rw-r--r-- | applets/clock/clock.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/applets/clock/clock.c b/applets/clock/clock.c index 622e3adf..0076c780 100644 --- a/applets/clock/clock.c +++ b/applets/clock/clock.c @@ -925,9 +925,8 @@ position_calendar_popup (ClockData *cd) monitors */ monitor.x = 0; monitor.y = 0; - - gdk_window_get_geometry (gdk_screen_get_root_window (screen), NULL, NULL, - &monitor.width, &monitor.height); + monitor.width = WidthOfScreen (gdk_x11_screen_get_xscreen (screen)); + monitor.height = HeightOfScreen (gdk_x11_screen_get_xscreen (screen)); } /* Based on panel orientation, position the popup. |