mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
Merge 804dd18cd0
into a25645a5a6
This commit is contained in:
commit
0b3eac526a
1 changed files with 32 additions and 0 deletions
|
@ -220,6 +220,34 @@ static void arrange_floating(list_t *floating) {
|
|||
|
||||
static void arrange_children(list_t *children,
|
||||
enum sway_container_layout layout, struct wlr_box *parent) {
|
||||
|
||||
// Don't include fullscreen containers. If we do, we run the risk
|
||||
// of overwriting properties as if this container was tiled/floating
|
||||
// but should still be fullscreen.
|
||||
bool has_fullscreen = false;
|
||||
for (int i = 0; i < children->length; ++i) {
|
||||
struct sway_container *child = children->items[i];
|
||||
|
||||
if (child->pending.fullscreen_mode != FULLSCREEN_NONE) {
|
||||
has_fullscreen = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (has_fullscreen) {
|
||||
list_t *fs_purged = create_list();
|
||||
|
||||
for (int i = 0; i < children->length; ++i) {
|
||||
struct sway_container *child = children->items[i];
|
||||
|
||||
if (child->pending.fullscreen_mode == FULLSCREEN_NONE) {
|
||||
list_add(fs_purged, child);
|
||||
}
|
||||
}
|
||||
|
||||
children = fs_purged;
|
||||
}
|
||||
|
||||
// Calculate x, y, width and height of children
|
||||
switch (layout) {
|
||||
case L_HORIZ:
|
||||
|
@ -244,6 +272,10 @@ static void arrange_children(list_t *children,
|
|||
struct sway_container *child = children->items[i];
|
||||
arrange_container(child);
|
||||
}
|
||||
|
||||
if (has_fullscreen) {
|
||||
list_free(children);
|
||||
}
|
||||
}
|
||||
|
||||
void arrange_container(struct sway_container *container) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue