[gtk+/wip/attachment-rectangle: 10/10] menu: correct position of attachment rectangle
- From: William Hua <williamhua src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/attachment-rectangle: 10/10] menu: correct position of attachment rectangle
- Date: Sat, 25 Jul 2015 03:51:36 +0000 (UTC)
commit 85f4c2c67f59948e49eb441c29a2629b4810406c
Author: William Hua <william hua canonical com>
Date: Fri Jul 24 23:46:58 2015 -0400
menu: correct position of attachment rectangle
gtk/gtkmenu.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
---
diff --git a/gtk/gtkmenu.c b/gtk/gtkmenu.c
index c949fea..10caae5 100644
--- a/gtk/gtkmenu.c
+++ b/gtk/gtkmenu.c
@@ -1543,6 +1543,8 @@ gtk_menu_popup_against (GtkMenu *menu,
GdkWindow *menu_window;
GdkWindow *parent_window;
GdkRectangle allocation;
+ gint x;
+ gint y;
g_return_if_fail (GTK_IS_MENU (menu));
g_return_if_fail (device == NULL || GDK_IS_DEVICE (device));
@@ -1747,8 +1749,11 @@ gtk_menu_popup_against (GtkMenu *menu,
if (parent_window)
{
+ gdk_window_get_root_origin (parent_window, &x, &y);
gtk_widget_get_allocation (parent_menu_item, &allocation);
gdk_window_get_root_coords (parent_window, allocation.x, allocation.y, &allocation.x,
&allocation.y);
+ allocation.x -= x;
+ allocation.y -= y;
gdk_window_set_attachment_rectangle (menu_window, &allocation, options);
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]