summaryrefslogtreecommitdiffstats
path: root/include
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 /include
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 'include')
-rw-r--r--include/sway/tree/view.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index 6990e5b6..7a94b2c2 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -32,7 +32,7 @@ struct sway_view_impl {
32 void (*configure)(struct sway_view *view, double ox, double oy, int width, 32 void (*configure)(struct sway_view *view, double ox, double oy, int width,
33 int height); 33 int height);
34 void (*set_activated)(struct sway_view *view, bool activated); 34 void (*set_activated)(struct sway_view *view, bool activated);
35 void (*set_maximized)(struct sway_view *view, bool maximized); 35 void (*set_tiled)(struct sway_view *view, bool tiled);
36 void (*set_fullscreen)(struct sway_view *view, bool fullscreen); 36 void (*set_fullscreen)(struct sway_view *view, bool fullscreen);
37 bool (*wants_floating)(struct sway_view *view); 37 bool (*wants_floating)(struct sway_view *view);
38 void (*for_each_surface)(struct sway_view *view, 38 void (*for_each_surface)(struct sway_view *view,
@@ -220,7 +220,7 @@ void view_autoconfigure(struct sway_view *view);
220 220
221void view_set_activated(struct sway_view *view, bool activated); 221void view_set_activated(struct sway_view *view, bool activated);
222 222
223void view_set_maximized(struct sway_view *view, bool maximized); 223void view_set_tiled(struct sway_view *view, bool tiled);
224 224
225void view_set_fullscreen_raw(struct sway_view *view, bool fullscreen); 225void view_set_fullscreen_raw(struct sway_view *view, bool fullscreen);
226 226