From 307e05b59365a5446f396018946d0cf2fb120365 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Wed, 27 Feb 2019 22:07:34 -0800 Subject: [PATCH] Qt: Minor about screen fixes --- src/platform/qt/AboutScreen.ui | 2 +- src/platform/qt/Window.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platform/qt/AboutScreen.ui b/src/platform/qt/AboutScreen.ui index d01aacdbb..c6f166e57 100644 --- a/src/platform/qt/AboutScreen.ui +++ b/src/platform/qt/AboutScreen.ui @@ -83,7 +83,7 @@ - © 2013 – 2018 Jeffrey Pfau, licensed under the Mozilla Public License, version 2.0 + © 2013 – 2019 Jeffrey Pfau, licensed under the Mozilla Public License, version 2.0 Game Boy Advance is a registered trademark of Nintendo Co., Ltd. diff --git a/src/platform/qt/Window.cpp b/src/platform/qt/Window.cpp index cbb65d64d..336b78c89 100644 --- a/src/platform/qt/Window.cpp +++ b/src/platform/qt/Window.cpp @@ -1189,7 +1189,7 @@ void Window::setupMenu(QMenuBar* menubar) { fileMenu->addSeparator(); #endif - QAction* about = new QAction(tr("About"), fileMenu); + QAction* about = new QAction(tr("About..."), fileMenu); connect(about, &QAction::triggered, openTView()); fileMenu->addAction(about);