]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix no-accept-focus handling for embedded frames
authorPo Lu <luangruo@yahoo.com>
Fri, 25 Nov 2022 11:35:14 +0000 (19:35 +0800)
committerPo Lu <luangruo@yahoo.com>
Sat, 26 Nov 2022 00:47:25 +0000 (08:47 +0800)
* src/xterm.c (handle_one_xevent): Don't focus embedded frames
on click if they have `no-accept-focus' set.

src/xterm.c

index 7d855c92ccb07e8efb7482f37d490bd0ea04ceee..ec605f5e914da4082ba8ed60ceef8a3987d6458f 100644 (file)
@@ -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);
                }