mirror of
https://github.com/swaywm/sway.git
synced 2025-11-16 06:59:49 -05:00
Don't unmaximize floating views
This commit is contained in:
parent
40af5d81a1
commit
97672295ed
6 changed files with 0 additions and 40 deletions
|
|
@ -175,14 +175,6 @@ static void set_activated(struct sway_view *view, bool activated) {
|
|||
wlr_xwayland_surface_activate(surface, activated);
|
||||
}
|
||||
|
||||
static void set_tiled(struct sway_view *view, bool tiled) {
|
||||
if (xwayland_view_from_view(view) == NULL) {
|
||||
return;
|
||||
}
|
||||
struct wlr_xwayland_surface *surface = view->wlr_xwayland_surface;
|
||||
wlr_xwayland_surface_set_maximized(surface, tiled);
|
||||
}
|
||||
|
||||
static void set_fullscreen(struct sway_view *view, bool fullscreen) {
|
||||
if (xwayland_view_from_view(view) == NULL) {
|
||||
return;
|
||||
|
|
@ -232,7 +224,6 @@ static const struct sway_view_impl view_impl = {
|
|||
.get_int_prop = get_int_prop,
|
||||
.configure = configure,
|
||||
.set_activated = set_activated,
|
||||
.set_tiled = set_tiled,
|
||||
.set_fullscreen = set_fullscreen,
|
||||
.wants_floating = wants_floating,
|
||||
.close = _close,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue