]> git.eshelyaron.com Git - emacs.git/commitdiff
macOS: Don't constrainFrameRect for child frames
authorGerd Möllmann <gerd.moellmann@gmail.com>
Sun, 9 Mar 2025 10:47:35 +0000 (11:47 +0100)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Mar 2025 18:40:58 +0000 (19:40 +0100)
* src/nsterm.m ([EmacsWindow constrainFrameRect:toScreen:]): Don't do
anything for child frames.

(cherry picked from commit ba20f73d8e0173a37fbdd2efe72a7a3b0d62dfa5)

src/nsterm.m

index f6fd43a1889c0f472a17dfa397a687b73a0ffd8f..46bb3f5dd7a5b846b73305600dd59f076ba893cf 100644 (file)
@@ -9790,6 +9790,13 @@ nswindow_orderedIndex_sort (id w1, id w2, void *c)
   NSTRACE ("[EmacsWindow constrainFrameRect:" NSTRACE_FMT_RECT " toScreen:]",
              NSTRACE_ARG_RECT (frameRect));
 
+  /* Don't do anything for child frames because that leads to weird
+     child frame placement in some cases involving Dock placement and
+     Dock Hiding.  */
+  struct frame *f = ((EmacsView *) [self delegate])->emacsframe;
+  if (FRAME_PARENT_FRAME (f))
+    return frameRect;
+
 #ifdef NS_IMPL_COCOA
 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1090
   // If separate spaces is on, it is like each screen is independent.  There is