Comment 0 for bug 1561654

Revision history for this message
Andrea Bernabei (faenil) wrote :

Ubuntu UI Toolkit r1905

Description:
When QT_DEVICE_PIXEL_RATIO>1 is set, using Icon without specifying an explicit size causes binding loops on implicitWidth (and also implicitHeight

How to reproduce:
QT_DEVICE_PIXEL_RATIO=2 qmlscene main.qml

where main.qml is:

import QtQuick 2.4
import Ubuntu.Components 1.3

MainView {
    id: gallery
    Icon {
        name: "add"
    }
}