mirror of https://github.com/mgba-emu/mgba.git
Qt: Rename "Fullscreen" to "Toggle fullscreen"
This commit is contained in:
parent
857fc21d21
commit
f1396aa844
1
CHANGES
1
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:
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue