Comment 28 for bug 1201094

Revision history for this message
Tim Peeters (tpeeters) wrote :

I could not reproduce the issue with this code:

import QtQuick 2.0
import Ubuntu.Components 1.1
import Ubuntu.Components.ListItems 1.0 as ListItem

MainView {
    width: 800
    height: 600
    id: mainView
    useDeprecatedToolbar: false

    Tabs {
        id: tabs
        Item {
            // does this mess up stuff? nope.
        }

        Tab {
            title: i18n.tr("List view #" + index)
            page: Page {
                ListView {
                    clip: true
                    anchors.fill: parent
                    model: 20
                    delegate: ListItem.Standard {
                        iconName: "call-start"
                        text: "Item "+modelData
                    }
                }
            }
        }
    }
}

and in the latest images (>32) the bug seems to be gone in all the apps, so I am closing this bug.