Fix the hello world slint macro example

The slint VS Code plugin is otherwise reporting the warning:
Exported component 'HelloWorld' doesn't inherit Window. This is deprecated
This commit is contained in:
Jocelyn Turcotte 2025-01-08 22:29:47 +01:00 committed by Olivier Goffart
parent 31912fedaf
commit 8ea5662242

View file

@ -44,7 +44,7 @@ This method combines your Rust code with the `.slint` design markup in one file,
```rust
slint::slint!{
export component HelloWorld {
export component HelloWorld inherits Window {
Text {
text: "hello world";
color: green;