Commit 2bc7ca49 authored by Stephen A Pohl's avatar Stephen A Pohl
Browse files

Bug 1742877: Add the proper window mask to popup windows on macOS that can be...

Bug 1742877: Add the proper window mask to popup windows on macOS that can be miniaturized, such as the screen share indicator. r=mstange

Differential Revision: https://phabricator.services.mozilla.com/D135255
parent 56e66ff2
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -408,6 +408,9 @@ nsresult nsCocoaWindow::CreateNativeWindow(const NSRect& aRect, nsBorderStyle aB
          features |= NSWindowStyleMaskClosable;
        }
      }
      if (aBorderStyle & eBorderStyle_minimize) {
        features |= NSWindowStyleMaskMiniaturizable;
      }
      break;
    case eWindowType_toplevel:
    case eWindowType_dialog: