slint/sixtyfps_compiler/tests/basic/property_animation.60
Olivier Goffart 4b20bf97ef Add px unit in many places
(This was done automatically with the updater)
2020-07-14 17:14:59 +02:00

10 lines
169 B
Text

TestCase := Rectangle {
animate x {
duration: 1000ms;
}
animate y {
x: 0px;
// ^error{Unknown property x in PropertyAnimation}
}
}