Revert "Don't unmaximize floating views"

This reverts commit 97672295ed.
This commit is contained in:
Rostislav Pehlivanov 2018-06-27 17:53:13 +01:00
parent 53c4467573
commit e0d0e8f840
7 changed files with 51 additions and 6 deletions

View file

@ -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);