decorations: respect motif hints
This commit is contained in:
parent
fc627afd18
commit
a4d601e3d6
|
@ -312,9 +312,11 @@ void handle_xwayland_surface(struct wl_listener *listener, void *data) {
|
||||||
wl_list_insert(&desktop->views, &view->link);
|
wl_list_insert(&desktop->views, &view->link);
|
||||||
|
|
||||||
if (!surface->override_redirect) {
|
if (!surface->override_redirect) {
|
||||||
view->decorated = true;
|
if (surface->decorations == WLR_XWAYLAND_SURFACE_DECORATIONS_ALL) {
|
||||||
view->border_width = 4;
|
view->decorated = true;
|
||||||
view->titlebar_height = 12;
|
view->border_width = 4;
|
||||||
|
view->titlebar_height = 12;
|
||||||
|
}
|
||||||
|
|
||||||
view_setup(view);
|
view_setup(view);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue