aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/xwayland.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-05-26 09:22:10 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-06-01 23:14:58 +1000
commit02de2a6f65c189bf563cca5b4d3fbc11826ea7f7 (patch)
tree569a148fde1ff86e9fdb68e374f5661a96ff7c37 /sway/desktop/xwayland.c
parentPrevent splitting a floating view (diff)
downloadsway-02de2a6f65c189bf563cca5b4d3fbc11826ea7f7.tar.gz
sway-02de2a6f65c189bf563cca5b4d3fbc11826ea7f7.tar.zst
sway-02de2a6f65c189bf563cca5b4d3fbc11826ea7f7.zip
Rename set_maximized functions to set_tiled
Diffstat (limited to 'sway/desktop/xwayland.c')
-rw-r--r--sway/desktop/xwayland.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
index 1373d968..783868bc 100644
--- a/sway/desktop/xwayland.c
+++ b/sway/desktop/xwayland.c
@@ -199,12 +199,12 @@ static void set_activated(struct sway_view *view, bool activated) {
199 wlr_xwayland_surface_activate(surface, activated); 199 wlr_xwayland_surface_activate(surface, activated);
200} 200}
201 201
202static void set_maximized(struct sway_view *view, bool maximized) { 202static void set_tiled(struct sway_view *view, bool tiled) {
203 if (xwayland_view_from_view(view) == NULL) { 203 if (xwayland_view_from_view(view) == NULL) {
204 return; 204 return;
205 } 205 }
206 struct wlr_xwayland_surface *surface = view->wlr_xwayland_surface; 206 struct wlr_xwayland_surface *surface = view->wlr_xwayland_surface;
207 wlr_xwayland_surface_set_maximized(surface, maximized); 207 wlr_xwayland_surface_set_maximized(surface, tiled);
208} 208}
209 209
210static void set_fullscreen(struct sway_view *view, bool fullscreen) { 210static void set_fullscreen(struct sway_view *view, bool fullscreen) {
@@ -272,7 +272,7 @@ static const struct sway_view_impl view_impl = {
272 .get_int_prop = get_int_prop, 272 .get_int_prop = get_int_prop,
273 .configure = configure, 273 .configure = configure,
274 .set_activated = set_activated, 274 .set_activated = set_activated,
275 .set_maximized = set_maximized, 275 .set_tiled = set_tiled,
276 .set_fullscreen = set_fullscreen, 276 .set_fullscreen = set_fullscreen,
277 .wants_floating = wants_floating, 277 .wants_floating = wants_floating,
278 .close = _close, 278 .close = _close,