From b9063569dbe3b82ef4ab531d9e18e4bbb500d5a8 Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Thu, 17 Jul 2014 13:04:16 +0200 Subject: [PATCH] Fix vanished fullscreen menu item text on non-OSX Broke when removing old OS X 10.6 code paths. Task-number: QTCREATORBUG-12684 Change-Id: I95dea42d40d2f343476cea0eba44bc2a293a422d Reviewed-by: Robert Loehning --- src/plugins/coreplugin/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/coreplugin/mainwindow.cpp b/src/plugins/coreplugin/mainwindow.cpp index 6a4b4e33719..bfa5bc35ced 100644 --- a/src/plugins/coreplugin/mainwindow.cpp +++ b/src/plugins/coreplugin/mainwindow.cpp @@ -654,7 +654,7 @@ void MainWindow::registerDefaultActions() } // Full Screen Action - m_toggleFullScreenAction = new QAction(this); + m_toggleFullScreenAction = new QAction(tr("Full Screen"), this); m_toggleFullScreenAction->setMenuRole(QAction::NoRole); m_toggleFullScreenAction->setCheckable(!Utils::HostOsInfo::isMacHost()); updateFullScreenAction();