Fix get_client_by_coord workspace bounds This allows to select minimized clients either by mouse or through spatial navigation.
1 files changed, 1 insertions(+), 1 deletions(-) M dvtm.c
M dvtm.c => dvtm.c +1 -1
@@ 683,7 683,7 @@ resize(Client *c, int x, int y, int w, int h) { static Client* get_client_by_coord(unsigned int x, unsigned int y) { - if (y < way || y >= wah) + if (y < way || y >= way+wah) return NULL; if (isarrange(fullscreen)) return sel;