Bug 401993 - The delegate recycler have a different geometry then "raw" delegates
Summary: The delegate recycler have a different geometry then "raw" delegates
Status: REPORTED
Alias: None
Product: frameworks-kirigami
Classification: Frameworks and Libraries
Component: general (show other bugs)
Version: 5.53.0
Platform: Other Linux
: NOR normal
Target Milestone: Not decided
Assignee: Marco Martin
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-12-11 10:55 UTC by Emmanuel Lepage Vallée
Modified: 2019-03-05 17:15 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Emmanuel Lepage Vallée 2018-12-11 10:55:31 UTC
SUMMARY



    import QtQuick 2.7
    import org.kde.kirigami 2.5 as Kirigami
    import QtQuick.Layouts 1.0
     
     
    Kirigami.CardsListView {
        ListModel {
            id: topLevel
            ListElement {name: "One"}
            ListElement {name: "Two"}
            ListElement {name: "Three"}
        }
        ListModel {
            id: secondLevel
            ListElement {name: "Alpha"}
            ListElement {name: "Beta"}
            ListElement {name: "Gamma"}
        }
     
        model: topLevel
     
        delegate: Kirigami.Card {
            width: parent.width
            height: content.height
            ColumnLayout {
                id: content
                height: implicitHeight
                Text { text: model.name; height: 40}
                ListView {
                    model: secondLevel
                    interactive: false
                    height: contentHeight
                    delegate: Rectangle {color:"red"; width: 42; height: 42}
                }
            }
        }
    }



STEPS TO REPRODUCE
1. Use the example above with and without recycler and witness the different result

OBSERVED RESULT / EXPECTED RESULT
https://imgur.com/a/QVmOtLj
Comment 1 Marco Martin 2019-03-05 17:10:07 UTC
can you upload the image here? the one on imgur is expired
Comment 2 Marco Martin 2019-03-05 17:15:03 UTC
trying it locally with master, it seems to work as expected (cardslistview does add extra side margins, but that is by design)

does the problem persists?