Add missing colon for simple input dialog eaxmple

This commit is contained in:
Simon Hausmann 2021-10-06 15:24:42 +02:00
parent 2fffeba7cb
commit 301f142001

View file

@ -19,11 +19,11 @@ _ := Dialog {
preferred-width: 300px;
GridBox {
Row {
Text { text: "Enter Your name"; }
Text { text: "Enter Your name:"; }
name-le := LineEdit { }
}
Row {
Text { text: "Address"; }
Text { text: "Address:"; }
address-le := LineEdit { }
}
}