[balsa/gtk4: 14/248] compose window: Improve context menu placement
- From: Peter Bloomfield <peterb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [balsa/gtk4: 14/248] compose window: Improve context menu placement
- Date: Sun, 15 Nov 2020 20:13:55 +0000 (UTC)
commit 5036abd5694fce210cd53b373eb72fa32d07d41c
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 bfa56622b..b82ec2951 100644
--- a/src/sendmsg-window.c
+++ b/src/sendmsg-window.c
@@ -2408,8 +2408,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]