diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-05-26 09:22:10 +1000 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-05-26 09:22:10 +1000 |
| commit | 5ee079fd026fee0e13efcf451c84369f6e357ea1 (patch) | |
| tree | 569a148fde1ff86e9fdb68e374f5661a96ff7c37 /include | |
| parent | 1f327a9baa3e599e30fcca1eb982d6431c35d97b (diff) | |
Rename set_maximized functions to set_tiled
Diffstat (limited to 'include')
| -rw-r--r-- | include/sway/tree/view.h | 4 |
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 { void (*configure)(struct sway_view *view, double ox, double oy, int width, int height); void (*set_activated)(struct sway_view *view, bool activated); - void (*set_maximized)(struct sway_view *view, bool maximized); + 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, @@ -220,7 +220,7 @@ void view_autoconfigure(struct sway_view *view); void view_set_activated(struct sway_view *view, bool activated); -void view_set_maximized(struct sway_view *view, bool maximized); +void view_set_tiled(struct sway_view *view, bool tiled); void view_set_fullscreen_raw(struct sway_view *view, bool fullscreen); |
