workspaces: follow_pointer_mouse doesn't follow hidden containers

This commit is contained in:
Jose Diez 2015-08-10 22:45:50 +02:00
parent 8cc2c6fa7a
commit d8f364a846
3 changed files with 6 additions and 2 deletions

View file

@ -85,7 +85,8 @@ bool handle_key(wlc_handle view, uint32_t time, const struct wlc_modifiers
bool pointer_test(swayc_t *view, void *_origin) {
const struct wlc_origin *origin = _origin;
if (view->type == C_VIEW && origin->x >= view->x && origin->y >= view->y
&& origin->x < view->x + view->width && origin->y < view->y + view->height) {
&& origin->x < view->x + view->width && origin->y < view->y + view->height
&& view->visible) {
return true;
}
return false;