aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/xdg_shell.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/xdg_shell.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/xdg_shell.c')
-rw-r--r--sway/desktop/xdg_shell.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/desktop/xdg_shell.c b/sway/desktop/xdg_shell.c
index ebb12211..73d9477f 100644
--- a/sway/desktop/xdg_shell.c
+++ b/sway/desktop/xdg_shell.c
@@ -111,12 +111,12 @@ static void set_activated(struct sway_view *view, bool activated) {
111 } 111 }
112} 112}
113 113
114static void set_maximized(struct sway_view *view, bool maximized) { 114static void set_tiled(struct sway_view *view, bool tiled) {
115 if (xdg_shell_view_from_view(view) == NULL) { 115 if (xdg_shell_view_from_view(view) == NULL) {
116 return; 116 return;
117 } 117 }
118 struct wlr_xdg_surface *surface = view->wlr_xdg_surface; 118 struct wlr_xdg_surface *surface = view->wlr_xdg_surface;
119 wlr_xdg_toplevel_set_maximized(surface, maximized); 119 wlr_xdg_toplevel_set_maximized(surface, tiled);
120} 120}
121 121
122static void set_fullscreen(struct sway_view *view, bool fullscreen) { 122static void set_fullscreen(struct sway_view *view, bool fullscreen) {
@@ -168,7 +168,7 @@ static const struct sway_view_impl view_impl = {
168 .get_string_prop = get_string_prop, 168 .get_string_prop = get_string_prop,
169 .configure = configure, 169 .configure = configure,
170 .set_activated = set_activated, 170 .set_activated = set_activated,
171 .set_maximized = set_maximized, 171 .set_tiled = set_tiled,
172 .set_fullscreen = set_fullscreen, 172 .set_fullscreen = set_fullscreen,
173 .wants_floating = wants_floating, 173 .wants_floating = wants_floating,
174 .for_each_surface = for_each_surface, 174 .for_each_surface = for_each_surface,