mirror of
https://github.com/NickHu/sway
synced 2024-11-16 19:49:56 +01:00
ipc_has_event_listeners: fix inverted check of subscribed_events
subscribed_events is a bit mask, with each *set* bit representing an event the client has subscribed to.
This commit is contained in:
parent
c65057ef8b
commit
d3b3eb019a
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ int ipc_client_handle_readable(int client_fd, uint32_t mask, void *data) {
|
|||
static bool ipc_has_event_listeners(enum ipc_command_type event) {
|
||||
for (int i = 0; i < ipc_client_list->length; i++) {
|
||||
struct ipc_client *client = ipc_client_list->items[i];
|
||||
if ((client->subscribed_events & event_mask(event)) == 0) {
|
||||
if ((client->subscribed_events & event_mask(event)) != 0) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue