Daniel Brötzmann pushed to branch master at gajim / gajim
Commits:
c6703b40 by wurstsalat at 2025-04-11T22:04:12+02:00
fix: Account sidebar: Fix setting show for multiple accounts
Fixes #12257
- - - - -
1 changed file:
- gajim/gtk/account_side_bar.py
Changes:
=====================================
gajim/gtk/account_side_bar.py
=====================================
@@ -218,7 +218,7 @@ def _on_change_status(
self._status_popover.popdown()
accounts = app.get_connected_accounts()
- account = accounts[0] if len(accounts) > 1 else None
+ account = accounts[0] if len(accounts) == 1 else None
app.app.change_status(status=new_status, account=account)
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/c6703b40fe0222d8290f8a3a7b8f4819efbef8b9
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/c6703b40fe0222d8290f8a3a7b8f4819efbef8b9
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]