diff options
author | emersion <contact@emersion.fr> | 2018-06-30 12:28:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-30 12:28:02 +0100 |
commit | d17ca5d15be2bdeb6541ce0273472ca9a98c9864 (patch) | |
tree | db09a5845214199b2e56aad3dabdb1373f7596d0 /include/sway | |
parent | 53c4467573c782b71ab6616e78834b432530f8ed (diff) | |
parent | f42bf0ad4abe185200b68ebce4848b80366cc474 (diff) |
Merge pull request #2171 from atomnuker/master
Revert "Don't unmaximize floating views"
Diffstat (limited to 'include/sway')
-rw-r--r-- | include/sway/tree/view.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h index 3df38e2d..91865232 100644 --- a/include/sway/tree/view.h +++ b/include/sway/tree/view.h @@ -32,6 +32,7 @@ struct sway_view_impl { void (*configure)(struct sway_view *view, double lx, double ly, int width, int height); void (*set_activated)(struct sway_view *view, bool activated); + void (*set_tiled)(struct sway_view *view, bool tiled); void (*set_fullscreen)(struct sway_view *view, bool fullscreen); bool (*wants_floating)(struct sway_view *view); void (*for_each_surface)(struct sway_view *view, @@ -223,6 +224,8 @@ void view_autoconfigure(struct sway_view *view); void view_set_activated(struct sway_view *view, bool activated); +void view_set_tiled(struct sway_view *view, bool tiled); + void view_set_fullscreen_raw(struct sway_view *view, bool fullscreen); void view_set_fullscreen(struct sway_view *view, bool fullscreen); |