mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-04 18:58:36 +00:00
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:
parent
31912fedaf
commit
8ea5662242
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue