summaryrefslogtreecommitdiff
path: root/libdocument/ev-document-misc.c
diff options
context:
space:
mode:
authorZenWalker <[email protected]>2017-08-20 03:29:36 +0200
committerraveit65 <[email protected]>2017-08-20 17:00:09 +0200
commit444cec08e38299e5d6ae9489ae74d02f4e4a5f97 (patch)
tree186b13a66e39402e816a14db612f8dd4b89ee811 /libdocument/ev-document-misc.c
parent14e0759b76e3213334ae8be367382695f9fe8d55 (diff)
downloadatril-444cec08e38299e5d6ae9489ae74d02f4e4a5f97.tar.bz2
atril-444cec08e38299e5d6ae9489ae74d02f4e4a5f97.tar.xz
avoid gdk_screen_get_primary_monitor/gdk_screen_get_monitor_scale_factor
Diffstat (limited to 'libdocument/ev-document-misc.c')
-rw-r--r--libdocument/ev-document-misc.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/libdocument/ev-document-misc.c b/libdocument/ev-document-misc.c
index c530018e..6794d050 100644
--- a/libdocument/ev-document-misc.c
+++ b/libdocument/ev-document-misc.c
@@ -372,15 +372,14 @@ ev_document_misc_invert_pixbuf (GdkPixbuf *pixbuf)
}
gdouble
+#if GTK_CHECK_VERSION (3, 22, 0)
+ev_document_misc_get_screen_dpi (GdkScreen *screen, GdkMonitor *monitor)
+#else
ev_document_misc_get_screen_dpi (GdkScreen *screen, gint monitor)
+#endif
{
gdouble dp, di;
gint sc_width, sc_height;
-#if GTK_CHECK_VERSION (3, 22, 0)
- GdkMonitor *monitor_id;
-
- monitor_id = gdk_display_get_monitor (gdk_screen_get_display (screen), monitor);
-#endif
gdk_window_get_geometry (gdk_screen_get_root_window (screen), NULL, NULL,
&sc_width, &sc_height);
@@ -390,12 +389,10 @@ ev_document_misc_get_screen_dpi (GdkScreen *screen, gint monitor)
/*diagonal in inches*/
#if GTK_CHECK_VERSION (3, 22, 0)
- di = hypot (gdk_monitor_get_width_mm(monitor_id), gdk_monitor_get_height_mm (monitor_id)) / 25.4;
+ di = hypot (gdk_monitor_get_width_mm(monitor), gdk_monitor_get_height_mm (monitor)) / 25.4;
+ di /= gdk_monitor_get_scale_factor (monitor);
#else
di = hypot (gdk_screen_get_width_mm(screen), gdk_screen_get_height_mm (screen)) / 25.4;
-#endif
-
-#ifdef HAVE_HIDPI_SUPPORT
di /= gdk_screen_get_monitor_scale_factor(screen, monitor);
#endif