Fix example

This commit is contained in:
luk3yx 2022-07-15 13:15:32 +12:00
parent aa087ed55f
commit 275ef77dec

View File

@ -120,8 +120,8 @@ gui.HBox{
-- You can nest HBox and VBox elements
gui.VBox{
gui.Image{texture_name="default_dirt.png", align_h = "centre"},
gui.Label{label="Dirt"},
gui.Image{w=1, h=1, texture_name="default_dirt.png", align_h="centre"},
gui.Label{label="Dirt", expand=true, align_h="centre"},
}
}
```