mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Fixed window refresh on presence
This commit is contained in:
parent
770b572d58
commit
3c39befa5e
@ -472,8 +472,11 @@ ui_contact_online(const char * const barejid, const char * const resource,
|
|||||||
jid_destroy(jid);
|
jid_destroy(jid);
|
||||||
g_string_free(display_str, TRUE);
|
g_string_free(display_str, TRUE);
|
||||||
|
|
||||||
if (wins_is_current(window))
|
if (wins_is_current(console)) {
|
||||||
wins_refresh_current();
|
wins_refresh_current();
|
||||||
|
} else if ((window != NULL) && (wins_is_current(window))) {
|
||||||
|
wins_refresh_current();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -511,8 +514,11 @@ ui_contact_offline(const char * const from, const char * const show,
|
|||||||
jid_destroy(jidp);
|
jid_destroy(jidp);
|
||||||
g_string_free(display_str, TRUE);
|
g_string_free(display_str, TRUE);
|
||||||
|
|
||||||
if (wins_is_current(window))
|
if (wins_is_current(console)) {
|
||||||
wins_refresh_current();
|
wins_refresh_current();
|
||||||
|
} else if ((window != NULL) && (wins_is_current(window))) {
|
||||||
|
wins_refresh_current();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user