diff options
author | monsta <[email protected]> | 2018-01-29 22:22:48 +0300 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-01-31 09:55:09 +0100 |
commit | 45cbbd09a196d3143e25db3fe0ae7103388aae10 (patch) | |
tree | 2d8e302296e4b3d292db479f24f92d9f7065788b /shell/ev-navigation-action-widget.c | |
parent | 32575e23107333add227eaa0501ae3cfe6d4fd8a (diff) | |
download | atril-45cbbd09a196d3143e25db3fe0ae7103388aae10.tar.bz2 atril-45cbbd09a196d3143e25db3fe0ae7103388aae10.tar.xz |
require GTK+ 3.22 and GLib 2.50
Diffstat (limited to 'shell/ev-navigation-action-widget.c')
-rw-r--r-- | shell/ev-navigation-action-widget.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/shell/ev-navigation-action-widget.c b/shell/ev-navigation-action-widget.c index 97bd0da5..d618e9a0 100644 --- a/shell/ev-navigation-action-widget.c +++ b/shell/ev-navigation-action-widget.c @@ -131,34 +131,18 @@ menu_position_func (GtkMenu *menu, GtkTextDirection direction; GdkWindow *gdk_window; GdkRectangle monitor; -#if GTK_CHECK_VERSION (3, 22, 0) GdkMonitor *monitor_num; GdkDisplay *display; -#else - gint monitor_num; - GdkScreen *screen; -#endif gtk_widget_get_preferred_size (GTK_WIDGET (button->menu), &menu_req, NULL); direction = gtk_widget_get_direction (widget); -#if GTK_CHECK_VERSION (3, 22, 0) display = gtk_widget_get_display (GTK_WIDGET (menu)); -#else - screen = gtk_widget_get_screen (GTK_WIDGET (menu)); -#endif gdk_window = gtk_widget_get_window (widget); -#if GTK_CHECK_VERSION (3, 22, 0) monitor_num = gdk_display_get_monitor_at_window (display, gdk_window); if (monitor_num == NULL) monitor_num = gdk_display_get_monitor (display, 0); gdk_monitor_get_geometry (monitor_num, &monitor); -#else - monitor_num = gdk_screen_get_monitor_at_window (screen, gdk_window); - if (monitor_num < 0) - monitor_num = 0; - gdk_screen_get_monitor_geometry (screen, monitor_num, &monitor); -#endif gdk_window_get_origin (gdk_window, x, y); gtk_widget_get_allocation (widget, &allocation); |