summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo Lu <luangruo@yahoo.com>2022-11-25 19:35:14 +0800
committerPo Lu <luangruo@yahoo.com>2022-11-26 08:47:25 +0800
commit123e90f6d349ca8882973db74007cb5d9067305c (patch)
treee6881d32a47bb08f77b6c25ac28e6eb742c1a2f4
parent2389158a31b4a126a328146399fe7ef304c97fef (diff)
downloademacs-123e90f6d349ca8882973db74007cb5d9067305c.tar.gz
Fix no-accept-focus handling for embedded frames
* src/xterm.c (handle_one_xevent): Don't focus embedded frames on click if they have `no-accept-focus' set.
-rw-r--r--src/xterm.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 7d855c92ccb..ec605f5e914 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -21430,7 +21430,9 @@ handle_one_xevent (struct x_display_info *dpyinfo,
if (!NILP (tab_bar_arg))
inev.ie.arg = tab_bar_arg;
}
- if (FRAME_X_EMBEDDED_P (f))
+
+ if (FRAME_X_EMBEDDED_P (f)
+ && !FRAME_NO_ACCEPT_FOCUS (f))
xembed_send_message (f, event->xbutton.time,
XEMBED_REQUEST_FOCUS, 0, 0, 0);
}
@@ -23198,7 +23200,9 @@ handle_one_xevent (struct x_display_info *dpyinfo,
if (!NILP (tab_bar_arg))
inev.ie.arg = tab_bar_arg;
}
- if (FRAME_X_EMBEDDED_P (f))
+
+ if (FRAME_X_EMBEDDED_P (f)
+ && !FRAME_NO_ACCEPT_FOCUS (f))
xembed_send_message (f, xev->time,
XEMBED_REQUEST_FOCUS, 0, 0, 0);
}