]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix redefinition of child frames on NS
authorAlan Third <alan@idiocy.org>
Sun, 13 May 2018 09:33:44 +0000 (10:33 +0100)
committerAlan Third <alan@idiocy.org>
Sat, 2 Jun 2018 14:31:59 +0000 (15:31 +0100)
* src/nsterm.m (x_set_parent_frame): If the NSWindow has an existing
parent frame, remove it.

src/nsterm.m

index c8ae31abc09a0ac9473d13c84594b01194f3bc0a..df883346dee2e04acf9675455beb8354b3d2488e 100644 (file)
@@ -1958,12 +1958,20 @@ x_set_parent_frame (struct frame *f, Lisp_Object new_value, Lisp_Object old_valu
 
   if (p != FRAME_PARENT_FRAME (f))
     {
-      parent = [FRAME_NS_VIEW (p) window];
+      block_input ();
       child = [FRAME_NS_VIEW (f) window];
 
-      block_input ();
-      [parent addChildWindow: child
-                     ordered: NSWindowAbove];
+      if ([child parentWindow] != nil)
+        [[child parentWindow] removeChildWindow:child];
+
+      if (!NILP (new_value))
+        {
+          parent = [FRAME_NS_VIEW (p) window];
+
+          [parent addChildWindow: child
+                         ordered: NSWindowAbove];
+        }
+
       unblock_input ();
 
       fset_parent_frame (f, new_value);