Mostly added Add movie functionality. Removed calendar functions for now. Want to add the ability to modify settings and quality profiles first

This commit is contained in:
2023-08-08 10:50:04 -06:00
parent ae6e19a414
commit 08cde20359
14 changed files with 475 additions and 98 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ async fn start_ui(app: &Arc<Mutex<App>>) -> Result<()> {
match input_events.next()? {
InputEvent::KeyEvent(key) => {
if key == Key::Char('q') {
if key == Key::Char('q') && !app.should_ignore_quit_key {
break;
}