diff options
Diffstat (limited to 'dc')
| -rw-r--r-- | dc/dc.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -92,7 +92,10 @@ void tick(void) } if (tyui_begin_window("2nd Window", ty_recti(110, 5, 100, 120), &winid2)) { - tyui_text("Test text"); + static float value = 100; + tyui_slider(0, 100, &value); + tyui_slider_ex(0, 100, &value, false, 0); + tyui_slider_ex(0, 100, &value, true, TYUI_ALIGN_LEFT); tyui_end_window(); } |
