From 1008566a669538ab211e04cd1cb8a51c2e8b5367 Mon Sep 17 00:00:00 2001 From: Hector <145347438+hudomn@users.noreply.github.com> Date: Wed, 10 Dec 2025 14:20:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=83=E6=B3=B0=E5=BC=95=E6=93=8E=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/main_window.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ui/main_window.py b/ui/main_window.py index d9887e05..e954df5e 100644 --- a/ui/main_window.py +++ b/ui/main_window.py @@ -1431,7 +1431,11 @@ class MainWindow(QMainWindow): plugin_config_action.triggered.connect(self.open_plugin_config_dialog) def showAboutDialog(self): - QMessageBox.about(self, '关于', f'元泰引擎\n版本: v1.0\n\n版权所有 © 2025') + msgBox = QMessageBox(self) + msgBox.setWindowTitle('关于') + msgBox.setText(f'元泰引擎系统\nMetaCore\n版本: v1.0') + msgBox.setIcon(QMessageBox.NoIcon) # 不显示图标 + msgBox.exec_() def open_plugin_config_dialog(self): """打开插件配置对话框"""