~martanne/dvtm

223cce32b9ce43ad2917119fe2b03babb798a2a7 — Marc AndrĂ© Tanner 7 years ago ca6a223
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;