16 lines
307 B
QML
16 lines
307 B
QML
|
pragma Strict
|
||
|
import QtQml
|
||
|
|
||
|
QtObject {
|
||
|
id: root
|
||
|
property int stackViewDepth: 0
|
||
|
onStackViewDepthChanged: {
|
||
|
if (stackViewDepth > 1) {
|
||
|
root.objectName = "backgroundBlur"
|
||
|
return true
|
||
|
}
|
||
|
root.objectName = "backgroundImage"
|
||
|
return false
|
||
|
}
|
||
|
}
|