diff --git a/CHANGES b/CHANGES index dabbccea9..1cc4f908e 100644 --- a/CHANGES +++ b/CHANGES @@ -70,6 +70,7 @@ Misc: - SDL: Properly check for initialization - SDL: Clean up initialization functions - All: Threads are now named + - Qt: Rename "Fullscreen" to "Toggle fullscreen" 0.2.1: (2015-05-13) Bugfixes: diff --git a/src/platform/qt/Window.cpp b/src/platform/qt/Window.cpp index 65e2ecd6d..d4bf2fa3f 100644 --- a/src/platform/qt/Window.cpp +++ b/src/platform/qt/Window.cpp @@ -824,7 +824,7 @@ void Window::setupMenu(QMenuBar* menubar) { }); addControlledAction(frameMenu, setSize, QString("frame%1x").arg(QString::number(i))); } - addControlledAction(frameMenu, frameMenu->addAction(tr("Fullscreen"), this, SLOT(toggleFullScreen()), QKeySequence("Ctrl+F")), "fullscreen"); + addControlledAction(frameMenu, frameMenu->addAction(tr("Toggle fullscreen"), this, SLOT(toggleFullScreen()), QKeySequence("Ctrl+F")), "fullscreen"); ConfigOption* lockAspectRatio = m_config->addOption("lockAspectRatio"); lockAspectRatio->addBoolean(tr("Lock aspect ratio"), avMenu);