diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-08-02 09:46:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-02 09:46:53 -0400 |
commit | 3eda76de4869984eed7b9476b9e011b6981ecbe5 (patch) | |
tree | becf792130769384e5a104cef540b1f2d7da00b4 /sway/input | |
parent | ea14ef40955a94e21a5198d2469e54fe1e6056e5 (diff) | |
parent | 787f08da7ff9ecb325def2e3a44dc5043d7e2753 (diff) | |
download | sway-3eda76de4869984eed7b9476b9e011b6981ecbe5.tar.xz |
Merge pull request #2407 from RyanDwyer/fix-popups-v3
Fix popups v3
Diffstat (limited to 'sway/input')
-rw-r--r-- | sway/input/cursor.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c index d6fdc1da..79f6ec46 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -109,9 +109,6 @@ static struct sway_container *container_at_coords( } struct sway_container *c; - if ((c = floating_container_at(lx, ly, surface, sx, sy))) { - return c; - } if ((c = container_at(ws, lx, ly, surface, sx, sy))) { return c; } |