summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-05-27 23:43:05 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-06-01 23:14:58 +1000
commit97672295ed50d1d6272876c4a3b6b5607cab05c6 (patch)
tree00b7e77be7e7b1323f494a6e6e075490e37605b1 /include
parentFix getting adjacent output (diff)
downloadsway-97672295ed50d1d6272876c4a3b6b5607cab05c6.tar.gz
sway-97672295ed50d1d6272876c4a3b6b5607cab05c6.tar.zst
sway-97672295ed50d1d6272876c4a3b6b5607cab05c6.zip
Don't unmaximize floating views
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/view.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index 5c2f759c..7362df5c 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -32,7 +32,6 @@ struct sway_view_impl {
32 void (*configure)(struct sway_view *view, double lx, double ly, int width, 32 void (*configure)(struct sway_view *view, double lx, double ly, 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_tiled)(struct sway_view *view, bool tiled);
36 void (*set_fullscreen)(struct sway_view *view, bool fullscreen); 35 void (*set_fullscreen)(struct sway_view *view, bool fullscreen);
37 bool (*wants_floating)(struct sway_view *view); 36 bool (*wants_floating)(struct sway_view *view);
38 void (*for_each_surface)(struct sway_view *view, 37 void (*for_each_surface)(struct sway_view *view,
@@ -221,8 +220,6 @@ void view_autoconfigure(struct sway_view *view);
221 220
222void view_set_activated(struct sway_view *view, bool activated); 221void view_set_activated(struct sway_view *view, bool activated);
223 222
224void view_set_tiled(struct sway_view *view, bool tiled);
225
226void view_set_fullscreen_raw(struct sway_view *view, bool fullscreen); 223void view_set_fullscreen_raw(struct sway_view *view, bool fullscreen);
227 224
228void view_set_fullscreen(struct sway_view *view, bool fullscreen); 225void view_set_fullscreen(struct sway_view *view, bool fullscreen);