slint/sixtyfps_compiler/tests/basic/inline_component.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

14 lines
225 B
Text

component Inline1 := Rectangle {
Rectangle {
x: 66px;
}
}
SubElements := Rectangle {
Inline1 {
color: yellow;
invalid: yellow;
// ^error{Unknown property invalid in Inline1}
}
}