From: Gerd Möllmann Date: Sun, 9 Mar 2025 10:47:35 +0000 (+0100) Subject: macOS: Don't constrainFrameRect for child frames X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=99dc946340de705f198fd0a3ccbf5bebec731377;p=emacs.git macOS: Don't constrainFrameRect for child frames * src/nsterm.m ([EmacsWindow constrainFrameRect:toScreen:]): Don't do anything for child frames. (cherry picked from commit ba20f73d8e0173a37fbdd2efe72a7a3b0d62dfa5) --- diff --git a/src/nsterm.m b/src/nsterm.m index f6fd43a1889..46bb3f5dd7a 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -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