aboutsummaryrefslogtreecommitdiff
path: root/main/src/ui/manage_accounts/account_row.vala
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/ui/manage_accounts/account_row.vala')
-rw-r--r--main/src/ui/manage_accounts/account_row.vala14
1 files changed, 6 insertions, 8 deletions
diff --git a/main/src/ui/manage_accounts/account_row.vala b/main/src/ui/manage_accounts/account_row.vala
index 911d48f4..8ac2c213 100644
--- a/main/src/ui/manage_accounts/account_row.vala
+++ b/main/src/ui/manage_accounts/account_row.vala
@@ -21,16 +21,14 @@ public class AccountRow : Gtk.ListBoxRow {
jid_label.set_label(account.bare_jid.to_string());
stream_interactor.connection_manager.connection_error.connect((account, error) => {
- Idle.add(() => {
- if (account.equals(this.account)) update_warning_icon();
- return false;
- });
+ if (account.equals(this.account)) {
+ update_warning_icon();
+ }
});
stream_interactor.connection_manager.connection_state_changed.connect((account, state) => {
- Idle.add(() => {
- if (account.equals(this.account)) update_warning_icon();
- return false;
- });
+ if (account.equals(this.account)) {
+ update_warning_icon();
+ }
});
}