menu: move "About QElectroTech" in Help-Menu to bottom

If the version number of QElectroTech is requested in the forum in case of error messages or anomalies, the Qt version used is very often stated because the entry “About QElectroTech” does not appear very prominently in the help menu: The entry “About Qt” is used much more frequently because it appears eye-catchingly as the lowest entry. However, specifying the Qt version is often not helpful for troubleshooting: We need the QET version!
That's why I'm moving the “About QElectroTech” entry to the bottom, so that it is easier to see and find!
This commit is contained in:
plc-user
2025-02-14 19:47:19 +01:00
parent 9afc97108b
commit 4d5af028be
2 changed files with 2 additions and 2 deletions

View File

@@ -93,11 +93,11 @@
<string>&amp;Aide</string> <string>&amp;Aide</string>
</property> </property>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="m_about_qet_action"/>
<addaction name="m_online_manual"/> <addaction name="m_online_manual"/>
<addaction name="m_youtube_action"/> <addaction name="m_youtube_action"/>
<addaction name="m_donate_action"/> <addaction name="m_donate_action"/>
<addaction name="m_about_qt_action"/> <addaction name="m_about_qt_action"/>
<addaction name="m_about_qet_action"/>
</widget> </widget>
<addaction name="m_file_menu"/> <addaction name="m_file_menu"/>
<addaction name="m_edit_menu"/> <addaction name="m_edit_menu"/>

View File

@@ -151,13 +151,13 @@ void QETMainWindow::initCommonMenus()
help_menu_ = new QMenu(tr("&Aide", "window menu")); help_menu_ = new QMenu(tr("&Aide", "window menu"));
help_menu_ -> addAction(whatsthis_action_); help_menu_ -> addAction(whatsthis_action_);
help_menu_ -> addSeparator(); help_menu_ -> addSeparator();
help_menu_ -> addAction(about_qet_);
help_menu_ -> addAction(manual_online_); help_menu_ -> addAction(manual_online_);
help_menu_ -> addAction(youtube_); help_menu_ -> addAction(youtube_);
help_menu_ -> addAction(upgrade_); help_menu_ -> addAction(upgrade_);
help_menu_ -> addAction(upgrade_M); help_menu_ -> addAction(upgrade_M);
help_menu_ -> addAction(donate_); help_menu_ -> addAction(donate_);
help_menu_ -> addAction(about_qt_); help_menu_ -> addAction(about_qt_);
help_menu_ -> addAction(about_qet_);
#ifdef Q_OS_WIN32 #ifdef Q_OS_WIN32
upgrade_ -> setVisible(true); upgrade_ -> setVisible(true);