summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2017-12-10 02:53:45 +0100
committerPablo Barciela <[email protected]>2017-12-10 03:12:31 +0100
commitc4911e303edd2352597ec5879df1137fd0a83274 (patch)
tree4fb57ea9e98291b879709b26ce697c86b8d11c2d /shell
parentdd2c555654cd4beeec3cfc64481024982dbcbaa3 (diff)
downloadatril-c4911e303edd2352597ec5879df1137fd0a83274.tar.bz2
atril-c4911e303edd2352597ec5879df1137fd0a83274.tar.xz
WidthOfScreen and HeightOfScreen implementation
This commit reverts: https://github.com/mate-desktop/atril/commit/d9fffe2dc0e33d6777099c18635b7b75f54d3d35 And it applies an alternative to fix the deprecated functions: gdk_screen_get_width gdk_screen_get_height
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-window.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c
index a1675fcf..9102fe2b 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -40,6 +40,7 @@
#include <glib/gi18n.h>
#include <gio/gio.h>
#include <gtk/gtk.h>
+#include <gdk/gdkx.h>
#include "egg-editable-toolbar.h"
#include "egg-toolbar-editor.h"
@@ -1337,8 +1338,6 @@ setup_document_from_metadata (EvWindow *window)
GdkScreen *screen;
gint request_width;
gint request_height;
- gint sc_width;
- gint sc_height;
ev_document_get_max_page_size (window->priv->document,
&document_width, &document_height);
@@ -1347,13 +1346,9 @@ setup_document_from_metadata (EvWindow *window)
request_height = (gint)(height_ratio * document_height + 0.5);
screen = gtk_window_get_screen (GTK_WINDOW (window));
-
- gdk_window_get_geometry (gdk_screen_get_root_window (screen), NULL, NULL,
- &sc_width, &sc_height);
-
if (screen) {
- request_width = MIN (request_width, sc_width);
- request_height = MIN (request_height, sc_height);
+ request_width = MIN (request_width, WidthOfScreen (gdk_x11_screen_get_xscreen (screen)));
+ request_height = MIN (request_height, HeightOfScreen (gdk_x11_screen_get_xscreen (screen)));
}
if (request_width > 0 && request_height > 0) {