diff options
| author | tslil clingman <> | 2020-10-15 22:52:04 -0400 |
|---|---|---|
| committer | tslil clingman <> | 2020-10-15 22:52:04 -0400 |
| commit | 721479482bf83a1774808516b4d4cc4556b06994 (patch) | |
| tree | 2488056ff0bd5a54841ab6b7ff7c5cb4fdfe898b /src/main.rs | |
| parent | 2494c42d2fbd2900bdfeebfda39b0b706a45f9fe (diff) | |
Starting to understand FLTK/Rust Box<dyn FnMut()> story
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 3 |
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(); } } |
