aboutsummaryrefslogtreecommitdiff
path: root/sway/tree
diff options
context:
space:
mode:
authormwenzkowski <29407878+mwenzkowski@users.noreply.github.com>2018-10-09 20:10:45 +0200
committermwenzkowski <29407878+mwenzkowski@users.noreply.github.com>2018-10-09 21:22:15 +0200
commitfd645a2a883d96aecb7fa4664d1d000950f47a3a (patch)
tree8dfec300d61a3c77e31096b466ebd11627c1d039 /sway/tree
parent43875c437b8224d917304046fc92fc4db62a0d98 (diff)
Fix undesirable height change of floating views
In view_autoconfigure the height of the view is adjusted if the parent container has a tabbed/stacked layout. Previously this height change would also be applied to floating views, although it is not needed for them.
Diffstat (limited to 'sway/tree')
-rw-r--r--sway/tree/view.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index 1f00452d..e613ac0b 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -243,10 +243,10 @@ void view_autoconfigure(struct sway_view *view) {
// title area. We have to offset the surface y by the height of the title,
// bar, and disable any top border because we'll always have the title bar.
enum sway_container_layout layout = container_parent_layout(con);
- if (layout == L_TABBED) {
+ if (layout == L_TABBED && !container_is_floating(con)) {
y_offset = container_titlebar_height();
view->border_top = false;
- } else if (layout == L_STACKED) {
+ } else if (layout == L_STACKED && !container_is_floating(con)) {
list_t *siblings = container_get_siblings(con);
y_offset = container_titlebar_height() * siblings->length;
view->border_top = false;