mirror of
https://github.com/swaywm/sway.git
synced 2024-11-09 18:03:14 +00:00
transaction: fix missing top border with hide_lone_tab
Regressed by scene graph.
This commit is contained in:
parent
b04f4136bc
commit
a0a078f75e
|
@ -314,7 +314,7 @@ static void arrange_children(enum sway_container_layout layout, list_t *children
|
|||
|
||||
if (activated) {
|
||||
arrange_container(child, width, height - title_bar_height,
|
||||
false, 0);
|
||||
title_bar_height == 0, 0);
|
||||
} else {
|
||||
disable_container(child);
|
||||
}
|
||||
|
@ -343,7 +343,7 @@ static void arrange_children(enum sway_container_layout layout, list_t *children
|
|||
|
||||
if (activated) {
|
||||
arrange_container(child, width, height - title_height,
|
||||
false, 0);
|
||||
title_bar_height == 0, 0);
|
||||
} else {
|
||||
disable_container(child);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue