diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-06-27 17:53:13 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-06-27 17:53:13 +0100 |
| commit | 4416953faf83111666719e1eb0ea31afa4ee0aea (patch) | |
| tree | a81bf679fc25f89cc09516e1920c4496b2e4c2f8 /include | |
| parent | 5e534ae84d876b6340055a29748b41aca4a523f1 (diff) | |
Revert "Don't unmaximize floating views"
This reverts commit 341bab8c548b551ad66f3c777e18a6b5f01b6baf.
Diffstat (limited to 'include')
| -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); |
