aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authortslil clingman <>2020-10-30 22:47:03 -0400
committertslil clingman <>2020-10-30 22:47:03 -0400
commit9ac8a63a5319fb4c846d7b9f777b1572a47d9560 (patch)
tree0d20672394704304ec614acbc84884f7f2b004d9 /src/main.rs
parent721479482bf83a1774808516b4d4cc4556b06994 (diff)
Playing around with FLTK more
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 88ce6fa..6045d0f 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -193,6 +193,6 @@ This program comes with ABSOLUTELY NO WARRANTY; and is made available under the
endwin();
} else {
let mut gui = GUI::new();
- gui.run();
+ gui.run().unwrap();
}
}