From 4d5af028be859ad2861fb1e2538104f230d944d9 Mon Sep 17 00:00:00 2001 From: plc-user <74435298+plc-user@users.noreply.github.com> Date: Fri, 14 Feb 2025 19:47:19 +0100 Subject: [PATCH] =?UTF-8?q?menu:=20move=20"About=20QElectroTech"=20in=20He?= =?UTF-8?q?lp-Menu=20to=20bottom=20If=20the=20version=20number=20of=20QEle?= =?UTF-8?q?ctroTech=20is=20requested=20in=20the=20forum=20in=20case=20of?= =?UTF-8?q?=20error=20messages=20or=20anomalies,=20the=20Qt=20version=20us?= =?UTF-8?q?ed=20is=20very=20often=20stated=20because=20the=20entry=20?= =?UTF-8?q?=E2=80=9CAbout=20QElectroTech=E2=80=9D=20does=20not=20appear=20?= =?UTF-8?q?very=20prominently=20in=20the=20help=20menu:=20The=20entry=20?= =?UTF-8?q?=E2=80=9CAbout=20Qt=E2=80=9D=20is=20used=20much=20more=20freque?= =?UTF-8?q?ntly=20because=20it=20appears=20eye-catchingly=20as=20the=20low?= =?UTF-8?q?est=20entry.=20However,=20specifying=20the=20Qt=20version=20is?= =?UTF-8?q?=20often=20not=20helpful=20for=20troubleshooting:=20We=20need?= =?UTF-8?q?=20the=20QET=20version!=20That's=20why=20I'm=20moving=20the=20?= =?UTF-8?q?=E2=80=9CAbout=20QElectroTech=E2=80=9D=20entry=20to=20the=20bot?= =?UTF-8?q?tom,=20so=20that=20it=20is=20easier=20to=20see=20and=20find!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sources/editor/ui/qetelementeditor.ui | 2 +- sources/qetmainwindow.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/editor/ui/qetelementeditor.ui b/sources/editor/ui/qetelementeditor.ui index 207543db2..885f14807 100644 --- a/sources/editor/ui/qetelementeditor.ui +++ b/sources/editor/ui/qetelementeditor.ui @@ -93,11 +93,11 @@ &Aide - + diff --git a/sources/qetmainwindow.cpp b/sources/qetmainwindow.cpp index 2fb5afa90..149183a23 100644 --- a/sources/qetmainwindow.cpp +++ b/sources/qetmainwindow.cpp @@ -151,13 +151,13 @@ void QETMainWindow::initCommonMenus() help_menu_ = new QMenu(tr("&Aide", "window menu")); help_menu_ -> addAction(whatsthis_action_); help_menu_ -> addSeparator(); - help_menu_ -> addAction(about_qet_); help_menu_ -> addAction(manual_online_); help_menu_ -> addAction(youtube_); help_menu_ -> addAction(upgrade_); help_menu_ -> addAction(upgrade_M); help_menu_ -> addAction(donate_); help_menu_ -> addAction(about_qt_); + help_menu_ -> addAction(about_qet_); #ifdef Q_OS_WIN32 upgrade_ -> setVisible(true);