sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 527c259d063a4d7ca2bfd62b3b877bb70419535b
parent 84358788aae8472166bc01013515e09f9bc2f40c
Author: Drew DeVault <sir@cmpwn.com>
Date:   Wed, 11 Jan 2017 21:13:44 -0500

Fix #1008

Diffstat:
Msway/handlers.c | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/sway/handlers.c b/sway/handlers.c @@ -807,6 +807,10 @@ static bool swayc_border_check(swayc_t *c, const void *_origin) { const struct wlc_point *origin = _origin; const struct wlc_geometry title_bar = c->title_bar_geometry; + if (c->border_type != B_NORMAL) { + return false; + } + if (origin->x >= title_bar.origin.x && origin->y >= title_bar.origin.y && origin->x < title_bar.origin.x + (int32_t)title_bar.size.w && origin->y < title_bar.origin.y + (int32_t)title_bar.size.h) {