diff options
Diffstat (limited to 'cmd/text.ha')
| -rw-r--r-- | cmd/text.ha | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cmd/text.ha b/cmd/text.ha index f7ce1fc..7c569a8 100644 --- a/cmd/text.ha +++ b/cmd/text.ha @@ -17,7 +17,7 @@ export fn main() void = { let l = layout::newvlayout(&txt); l.layout.print(&l); - tui::clear(&state); + //tui::clear(&state); time::sleep(1 * time::SECOND); let st = txt.widget.style as *widget::style; @@ -25,37 +25,37 @@ export fn main() void = { text::settext(&txt, "bye world"); l.layout.print(&l); - tui::clear(&state); + //tui::clear(&state); time::sleep(1 * time::SECOND); st.colorfg = widget::color::BROWNFG; l.layout.print(&l); - tui::clear(&state); + //tui::clear(&state); time::sleep(1 * time::SECOND); st.colorfg = widget::color::BLUEFG; l.layout.print(&l); - tui::clear(&state); + //tui::clear(&state); time::sleep(1 * time::SECOND); st.colorfg = widget::color::MAGENTAFG; l.layout.print(&l); - tui::clear(&state); + //tui::clear(&state); time::sleep(1 * time::SECOND); st.colorfg = widget::color::CYANFG; l.layout.print(&l); - tui::clear(&state); + //tui::clear(&state); time::sleep(1 * time::SECOND); st.colorfg = widget::color::WHITEFG; l.layout.print(&l); - tui::clear(&state); + //tui::clear(&state); time::sleep(1 * time::SECOND); st.colorfg = widget::color::DEFAULTFG; |
