I reproduced the bug with this code, which has no header:

import QtQuick 2.2
import QtQuick.XmlListModel 2.0
import Ubuntu.Components 1.3
import Ubuntu.Components.ListItems 1.3
Item {
    width: units.gu(40)
    height: units.gu(71)
        id: page0
        ListView {
            id: view
            anchors.fill: parent
            model: 15
            delegate: Standard {
                width: ListView.view.width
                height: units.gu(5)
                text: index
            }
            onVerticalVelocityChanged: print("vv = "+verticalVelocity)
            PullToRefresh {
                id: pullToRefresh
                onRefreshingChanged: print("refreshing = "+refreshing)
                onRefresh: {
                    refreshing = true;
                    refreshing = false;
                }
            }
        }
    }

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1578619

Title:
  [regression] Extra flickable margin added when using PullToRefresh

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1578619/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to