summaryrefslogtreecommitdiff
path: root/textscreen/examples/guitest.c
diff options
context:
space:
mode:
Diffstat (limited to 'textscreen/examples/guitest.c')
-rw-r--r--textscreen/examples/guitest.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/textscreen/examples/guitest.c b/textscreen/examples/guitest.c
index b5bd1ea5..130c858f 100644
--- a/textscreen/examples/guitest.c
+++ b/textscreen/examples/guitest.c
@@ -157,6 +157,8 @@ void Window2(void)
TXT_AddWidget(table, TXT_NewInputBox(&textbox_value, 30));
TXT_AddWidget(table, TXT_NewLabel("Int: "));
TXT_AddWidget(table, TXT_NewIntInputBox(&numbox_value, 10));
+ TXT_AddWidget(table, TXT_NewLabel("Spin control:"));
+ TXT_AddWidget(table, TXT_NewSpinControl(&numbox_value, 0, 15));
}
int main(int argc, char *argv[])