diff options
Diffstat (limited to 'examples/declarative')
-rw-r--r-- | examples/declarative/fillmode/fillmode.qml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/declarative/fillmode/fillmode.qml b/examples/declarative/fillmode/fillmode.qml index 6bf1c12..d5d6bb5 100644 --- a/examples/declarative/fillmode/fillmode.qml +++ b/examples/declarative/fillmode/fillmode.qml @@ -13,6 +13,9 @@ Image { SetPropertyAction { value: "PreserveAspect" } SetPropertyAction { target: Label; property: "text"; value: "PreserveAspect" } PauseAnimation { duration: 1000 } + SetPropertyAction { value: "PreserveAspectFill" } + SetPropertyAction { target: Label; property: "text"; value: "PreserveAspectFill" } + PauseAnimation { duration: 1000 } SetPropertyAction { value: "Tile" } SetPropertyAction { target: Label; property: "text"; value: "Tile" } PauseAnimation { duration: 1000 } |