[balsa/popover: 14/63] compose window: Improve context menu placement
- From: Peter Bloomfield <peterb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [balsa/popover: 14/63] compose window: Improve context menu placement
- Date: Fri, 3 Jul 2020 15:52:07 +0000 (UTC)
commit 6458487ab4faabe4d7bae51cb22fe6291ae3d2fc
Author: Peter Bloomfield <PeterBloomfield bellsouth net>
Date: Thu May 7 15:51:19 2020 -0400
compose window: Improve context menu placement
src/sendmsg-window.c | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
---
diff --git a/src/sendmsg-window.c b/src/sendmsg-window.c
index 2673e9a73..bc4a81b20 100644
--- a/src/sendmsg-window.c
+++ b/src/sendmsg-window.c
@@ -2414,8 +2414,18 @@ attachment_button_press_cb(GtkGestureMultiPress *multi_press,
gtk_tree_model_get(model, &iter, ATTACH_INFO_COLUMN, &attach_info, -1);
if (attach_info != NULL) {
- if (attach_info->popup_menu != NULL)
+ if (attach_info->popup_menu != NULL) {
+ GdkRectangle rectangle;
+
+ /* Pop up above the pointer */
+ rectangle.x = (gint) x;
+ rectangle.width = 0;
+ rectangle.y = (gint) y;
+ rectangle.height = 0;
+ gtk_popover_set_pointing_to(GTK_POPOVER(attach_info->popup_menu),
+ &rectangle);
gtk_popover_popup(GTK_POPOVER(attach_info->popup_menu));
+ }
g_object_unref(attach_info);
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]