Skip to content

Commit

Permalink
#1833 fix issue with detection if minimized windows
Browse files Browse the repository at this point in the history
  • Loading branch information
koekeishiya committed Feb 4, 2024
1 parent 8dddee3 commit 123d3bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/space.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ uint32_t *space_window_list_for_connection(uint64_t *space_list, int space_count
} else if (parent_wid == 0) {
if (((attributes & 0x2) || (tags & 0x400000000000000)) && (((tags & 0x1)) || ((tags & 0x2) && (tags & 0x80000000)))) {
window_list[window_count++] = wid;
} else if (((attributes == 0x0) && (tags & 0x1000000000000000)) && (((tags & 0x1)) || ((tags & 0x2) && (tags & 0x80000000)))) {
} else if (((attributes == 0x0 || attributes == 0x1) && (tags & 0x1000000000000000)) && (((tags & 0x1)) || ((tags & 0x2) && (tags & 0x80000000)))) {
window_list[window_count++] = wid;
}
}
Expand Down

0 comments on commit 123d3bc

Please sign in to comment.