Qt: Rename "Fullscreen" to "Toggle fullscreen"

This commit is contained in:
Jeffrey Pfau 2015-06-13 12:25:08 -07:00
parent 857fc21d21
commit f1396aa844
2 changed files with 2 additions and 1 deletions

View File

@ -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:

View File

@ -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);