diff --git a/src/video/cocoa/cocoa_v.mm b/src/video/cocoa/cocoa_v.mm --- a/src/video/cocoa/cocoa_v.mm +++ b/src/video/cocoa/cocoa_v.mm @@ -196,6 +196,10 @@ bool VideoDriver_Cocoa::ToggleFullscreen if ([ this->window respondsToSelector:@selector(toggleFullScreen:) ]) { [ this->window performSelector:@selector(toggleFullScreen:) withObject:this->window ]; + + /* Hide the menu bar and the dock */ + [ NSMenu setMenuBarVisible:!full_screen ]; + this->UpdateVideoModes(); return true; }