all repos — mgba @ f1396aa844219e0c13e77fc51fc479a800f2d273

mGBA Game Boy Advance Emulator

Qt: Rename "Fullscreen" to "Toggle fullscreen"
Jeffrey Pfau jeffrey@endrift.com
Sat, 13 Jun 2015 12:25:08 -0700
commit

f1396aa844219e0c13e77fc51fc479a800f2d273

parent

857fc21d21af7de0785764b4250ae831a382f6f1

2 files changed, 2 insertions(+), 1 deletions(-)

jump to
M CHANGESCHANGES

@@ -70,6 +70,7 @@ - GBA Thread: Split GBASync into a separate file

- 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:
M src/platform/qt/Window.cppsrc/platform/qt/Window.cpp

@@ -824,7 +824,7 @@ resizeFrame(VIDEO_HORIZONTAL_PIXELS * i, VIDEO_VERTICAL_PIXELS * i);

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