diff --git a/src/nsterm.m b/src/nsterm.m index 74ee1219bbc..200b006d6fa 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -9562,6 +9562,13 @@ ns_in_echo_area (void) #ifdef NS_IMPL_COCOA if ([self respondsToSelector:@selector(setTabbingMode:)]) [self setTabbingMode:NSWindowTabbingModeDisallowed]; +#endif + /* Always show the toolbar below the window title. This is needed + on Mac OS 11+ where the toolbar style is decided by the system + (which is unpredictable) and the newfangled "compact" toolbar + may be chosen (which is undesirable). */ +#ifdef NS_IMPL_COCOA + [self setToolbarStyle: NSWindowToolbarStyleExpanded]; #endif }