From 542254ba8eee117f7ccc0ba89aeaf723073adb4a Mon Sep 17 00:00:00 2001 From: Jeffreytsai1004 Date: Mon, 3 Feb 2025 23:22:28 +0800 Subject: [PATCH] Update Update --- Install.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Install.py b/Install.py index 5047dee..322b7f7 100644 --- a/Install.py +++ b/Install.py @@ -395,6 +395,7 @@ except ImportError as e: msg_box.setWindowTitle("Uninstallation Successful") msg_box.setText(f"{TOOL_NAME} has been successfully uninstalled!") msg_box.setStandardButtons(QtWidgets.QMessageBox.Ok) + msg_box.setWindowIcon(QtGui.QIcon(TOOL_ICON)) msg_box.setStyleSheet(self.styleSheet()) msg_box.exec_() @@ -403,6 +404,7 @@ except ImportError as e: msg_box.setWindowTitle("Installation Successful") msg_box.setText(f"{TOOL_NAME} has been successfully installed!") msg_box.setStandardButtons(QtWidgets.QMessageBox.Ok) + msg_box.setWindowIcon(QtGui.QIcon(TOOL_ICON)) msg_box.setStyleSheet(self.styleSheet()) msg_box.exec_()