summaryrefslogtreecommitdiff
path: root/shell/ev-window.c
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2017-08-09 17:16:10 +0200
committerraveit65 <[email protected]>2017-08-12 22:01:34 +0200
commite4dc06ec2c72f536affda251c98a42dc8355ede3 (patch)
treefa7ac89c617521a1c4a6ce4d901f99ef2da4faed /shell/ev-window.c
parenta134dcdcd6e4b6934c5e8f3cc66ac824d9914d5b (diff)
downloadatril-e4dc06ec2c72f536affda251c98a42dc8355ede3.tar.bz2
atril-e4dc06ec2c72f536affda251c98a42dc8355ede3.tar.xz
fix runtime warnings caused by previous HDPI commit
Diffstat (limited to 'shell/ev-window.c')
-rw-r--r--shell/ev-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 59a3a27e..066655d9 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -387,7 +387,7 @@ get_screen_dpi (EvWindow *window)
gint monitor;
screen = gtk_window_get_screen (GTK_WINDOW (window));
- monitor = gdk_screen_get_monitor_at_window(screen, gtk_widget_get_window(GTK_WIDGET(GTK_WINDOW(window))));
+ monitor = gdk_screen_get_primary_monitor (screen);
return ev_document_misc_get_screen_dpi (screen, monitor);
}