aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authortslil clingman <>2020-10-15 22:52:04 -0400
committertslil clingman <>2020-10-15 22:52:04 -0400
commit721479482bf83a1774808516b4d4cc4556b06994 (patch)
tree2488056ff0bd5a54841ab6b7ff7c5cb4fdfe898b /src/main.rs
parent2494c42d2fbd2900bdfeebfda39b0b706a45f9fe (diff)
Starting to understand FLTK/Rust Box<dyn FnMut()> story
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index c7cc30a..88ce6fa 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -192,6 +192,7 @@ This program comes with ABSOLUTELY NO WARRANTY; and is made available under the
endwin();
} else {
- gui_test();
+ let mut gui = GUI::new();
+ gui.run();
}
}