diff --git a/blueman/plugins/applet/ShowConnected.py b/blueman/plugins/applet/ShowConnected.py index b809f8442..3b99171ce 100644 --- a/blueman/plugins/applet/ShowConnected.py +++ b/blueman/plugins/applet/ShowConnected.py @@ -100,7 +100,7 @@ def on_device_property_changed(self, path: str, key: str, value: Any) -> None: else: self._connections.remove(path) - if (self._connections and not self.active) or (self._connections and self.active): + if (self._connections and not self.active) or (not self._connections and self.active): self.parent.Plugins.StatusIcon.icon_should_change() self.update_statusicon()