From 76b7d4f046f3d543b0c96762356c40938e248db4 Mon Sep 17 00:00:00 2001 From: Sergey Palcheh Date: Tue, 2 Sep 2025 10:11:47 +0600 Subject: [PATCH] removed the dependency installation success window --- winehelper_gui.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/winehelper_gui.py b/winehelper_gui.py index 1f95a13..62e8535 100644 --- a/winehelper_gui.py +++ b/winehelper_gui.py @@ -340,12 +340,6 @@ class DependencyManager: still_missing = missing_packages if not still_missing: - info_box = QMessageBox(dialog) - info_box.setWindowIcon(self.app_icon) - info_box.setIcon(QMessageBox.Information) - info_box.setWindowTitle("Успех") - info_box.setText("Все необходимые зависимости были успешно установлены.") - info_box.exec_() installation_successful = True else: warn_box = QMessageBox(dialog)