paysages3d/src/interface/modeler/quickapp/qml/BaseRectangle.qml

14 lines
179 B
QML

import QtQuick 2.0
Rectangle {
opacity: enabled ? 1 : 0
enabled: true
Behavior on opacity {
PropertyAnimation {
duration: 200
}
}
}