From d7fff16991e4965ce887af15ec37d54c94b0a501 Mon Sep 17 00:00:00 2001 From: KenanZhu <3471685733@qq.com> Date: Thu, 25 Jun 2026 10:49:31 +0800 Subject: [PATCH] =?UTF-8?q?fix(driver):=20=E9=A9=B1=E5=8A=A8=E4=B8=8B?= =?UTF-8?q?=E8=BD=BD=E5=AE=8C=E6=88=90=E5=90=8E=E6=9B=B4=E6=96=B0=E4=B8=8B?= =?UTF-8?q?=E6=8B=89=E6=9D=A1=E7=9B=AE=E5=AE=89=E8=A3=85=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E5=90=8E=E7=BC=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/gui/ALWebDriverDownloadDialog.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/ALWebDriverDownloadDialog.py b/src/gui/ALWebDriverDownloadDialog.py index fd5f2c3..9f03409 100644 --- a/src/gui/ALWebDriverDownloadDialog.py +++ b/src/gui/ALWebDriverDownloadDialog.py @@ -468,6 +468,8 @@ class ALWebDriverDownloadDialog(CenterOnParentMixin, QDialog): if 0 <= index < len(self.__driver_ctxs): driver_info = self.__driver_ctxs[index] driver_info.driver_status = WebDriverStatus.INSTALLED + current_text = self.DriverComboBox.itemText(index) + self.DriverComboBox.setItemText(index, current_text + " - 已安装") self.updateDriverInfoDisplay(driver_info) self.updateProgressBarStates(driver_info) self.updateButtonStates(driver_info)