diff options
author | Matthew Petroff <[email protected]> | 2016-10-19 12:36:30 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-08-12 22:01:34 +0200 |
commit | a134dcdcd6e4b6934c5e8f3cc66ac824d9914d5b (patch) | |
tree | bbe658f472fde31e398e90ed74c888f332a71022 /libview | |
parent | b6a20b77926727af99b39773ee104ffa457c604f (diff) | |
download | atril-a134dcdcd6e4b6934c5e8f3cc66ac824d9914d5b.tar.bz2 atril-a134dcdcd6e4b6934c5e8f3cc66ac824d9914d5b.tar.xz |
Take monitor scale factor into account when calculating zoom.
https://github.com/linuxmint/xreader/commit/c47a1f4
Diffstat (limited to 'libview')
-rw-r--r-- | libview/ev-annotation-window.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libview/ev-annotation-window.c b/libview/ev-annotation-window.c index 217873e5..b352c2fd 100644 --- a/libview/ev-annotation-window.c +++ b/libview/ev-annotation-window.c @@ -97,9 +97,11 @@ static gdouble get_screen_dpi (EvAnnotationWindow *window) { GdkScreen *screen; + gint monitor; screen = gtk_window_get_screen (GTK_WINDOW (window)); - return ev_document_misc_get_screen_dpi (screen); + monitor = gdk_screen_get_monitor_at_window(screen, gtk_widget_get_window(GTK_WIDGET(GTK_WINDOW(window)))); + return ev_document_misc_get_screen_dpi (screen, monitor); } static void |