sway

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

commit 60fdb71a1f65d3c4f8516b4216f08a2347f1c3b7
parent 2bc18d8cf77c2a4aa47453c4177fdaac29736db8
Author: emersion <contact@emersion.fr>
Date:   Mon,  9 Jul 2018 22:59:57 +0100

Updates for swaywm/wlroots#1116

Diffstat:
Msway/tree/view.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sway/tree/view.c b/sway/tree/view.c @@ -752,8 +752,9 @@ struct sway_view *view_from_wlr_surface(struct wlr_surface *wlr_surface) { return NULL; } + const char *role = wlr_surface->role ? wlr_surface->role->name : NULL; wlr_log(WLR_DEBUG, "Surface of unknown type (role %s): %p", - wlr_surface->role, wlr_surface); + role, wlr_surface); return NULL; }