diff --git a/screens/setting/bluetooth_screen.py b/screens/setting/bluetooth_screen.py index 82585cc..429a2ec 100644 --- a/screens/setting/bluetooth_screen.py +++ b/screens/setting/bluetooth_screen.py @@ -44,7 +44,6 @@ class BluetoothDeviceCard(QFrame): self.status_indicator.setFont(QFont("", 18)) self.status_indicator.setAlignment(Qt.AlignCenter) self.status_indicator.setFixedSize(24, 24) - self._update_status_indicator() # Информация об устройстве info_col = QVBoxLayout() @@ -77,6 +76,8 @@ class BluetoothDeviceCard(QFrame): root.addWidget(self.status_indicator) root.addLayout(info_col, 1) root.addWidget(self.remove_btn) + + self._update_status_indicator() def _update_status_indicator(self): """Обновить цвет индикатора."""