https://bugs.kde.org/show_bug.cgi?id=394296

--- Comment #3 from Nate Graham <n...@kde.org> ---
Created attachment 117553
  --> https://bugs.kde.org/attachment.cgi?id=117553&action=edit
No frame and not touching

Consider the following code:


ColumnLayout {
    anchors.fill: parent

    TabBar {
        id: tabView

        TabButton {
            text: "Red"
        }
        TabButton {
            text: "Green"
        }
        TabButton {
            text: "Blue"
        }
    }

    SwipeView {
        Layout.fillWidth: true
        Layout.fillHeight: true

        clip: true

        currentIndex: tabView.currentIndex

        Rectangle {
            color: "Red"
        }
        Rectangle {
            color: "Green"
        }
        Rectangle {
            color: "Blue"
        }
    }
}


See the attachment for the visual result. The tab bar doesn't draw a frame like
QWidgets, but it doesn't touch the content area beneath it either. The result
is awkward and weird.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to