# HG changeset patch # User Chris Cannam # Date 1480955353 0 # Node ID 7b058ba5fa678ac8a1984e3464e2b476e3639a96 # Parent a1e0ddadbf22bfdbb97fb85752a094f1af66d114 Remove full-screen entry on OSX (#1759: SV's full-screen mode interacts badly with OSX full-screen mode) diff -r a1e0ddadbf22 -r 7b058ba5fa67 main/MainWindow.cpp --- a/main/MainWindow.cpp Fri Dec 02 09:14:11 2016 +0000 +++ b/main/MainWindow.cpp Mon Dec 05 16:29:13 2016 +0000 @@ -1069,12 +1069,16 @@ menu->addSeparator(); +#ifndef Q_OS_MAC + // Only on non-Mac platforms -- on the Mac this interacts very + // badly with the "native" full-screen mode action = new QAction(tr("Go Full-Screen"), this); action->setShortcut(tr("F11")); action->setStatusTip(tr("Expand the pane area to the whole screen")); connect(action, SIGNAL(triggered()), this, SLOT(goFullScreen())); m_keyReference->registerShortcut(action); menu->addAction(action); +#endif } void