diff options
author | Ryan Dwyer <RyanDwyer@users.noreply.github.com> | 2018-05-28 00:14:22 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-28 00:14:22 +1000 |
commit | 8fda41dab52656c7c4a0db9a835ae57cea994538 (patch) | |
tree | 2b0c481616cd738e0f6ca92be9594eec7707799b /sway/desktop | |
parent | 569f4e0e4c75562c38848ea0bbaeb3b2f230b1a9 (diff) | |
parent | de32b6d52ef8cf7d477fba23f42ca054155add56 (diff) |
Merge branch 'master' into cmd-swap
Diffstat (limited to 'sway/desktop')
-rw-r--r-- | sway/desktop/xdg_shell.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sway/desktop/xdg_shell.c b/sway/desktop/xdg_shell.c index 9a0d282b..b2b95fa0 100644 --- a/sway/desktop/xdg_shell.c +++ b/sway/desktop/xdg_shell.c @@ -3,13 +3,14 @@ #include <stdlib.h> #include <wayland-server.h> #include <wlr/types/wlr_xdg_shell.h> +#include <wlr/util/edges.h> +#include "log.h" +#include "sway/input/input-manager.h" +#include "sway/input/seat.h" +#include "sway/server.h" #include "sway/tree/container.h" #include "sway/tree/layout.h" -#include "sway/server.h" #include "sway/tree/view.h" -#include "sway/input/seat.h" -#include "sway/input/input-manager.h" -#include "log.h" static const struct sway_view_child_impl popup_impl; @@ -248,7 +249,8 @@ void handle_xdg_shell_surface(struct wl_listener *listener, void *data) { wlr_log(L_DEBUG, "New xdg_shell toplevel title='%s' app_id='%s'", xdg_surface->toplevel->title, xdg_surface->toplevel->app_id); wlr_xdg_surface_ping(xdg_surface); - wlr_xdg_toplevel_set_maximized(xdg_surface, true); + wlr_xdg_toplevel_set_tiled(xdg_surface, WLR_EDGE_LEFT | WLR_EDGE_RIGHT | + WLR_EDGE_TOP | WLR_EDGE_BOTTOM); struct sway_xdg_shell_view *xdg_shell_view = calloc(1, sizeof(struct sway_xdg_shell_view)); |