From a134dcdcd6e4b6934c5e8f3cc66ac824d9914d5b Mon Sep 17 00:00:00 2001 From: Matthew Petroff Date: Wed, 19 Oct 2016 12:36:30 -0400 Subject: Take monitor scale factor into account when calculating zoom. https://github.com/linuxmint/xreader/commit/c47a1f4 --- libview/ev-annotation-window.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libview/ev-annotation-window.c') 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 -- cgit v1.2.1