fix: only round top titlebar in stacked layout
This commit is contained in:
parent
d1fc6f9d53
commit
2342ded880
|
@ -1105,8 +1105,9 @@ static void render_containers_stacked(struct sway_output *output,
|
||||||
}
|
}
|
||||||
|
|
||||||
int y = parent->box.y + titlebar_height * i;
|
int y = parent->box.y + titlebar_height * i;
|
||||||
|
int corner_radius = i != 0 ? 0 : child->corner_radius;
|
||||||
render_titlebar(output, damage, child, parent->box.x, y, parent->box.width,
|
render_titlebar(output, damage, child, parent->box.x, y, parent->box.width,
|
||||||
colors, child->alpha, child->corner_radius, title_texture, marks_texture);
|
colors, child->alpha, corner_radius, title_texture, marks_texture);
|
||||||
|
|
||||||
if (child == current) {
|
if (child == current) {
|
||||||
current_colors = colors;
|
current_colors = colors;
|
||||||
|
|
Loading…
Reference in a new issue