From e3bb347a12ad929619a51b37f0ca48dcfe46b731 Mon Sep 17 00:00:00 2001 From: Ricky Kresslein Date: Fri, 22 Apr 2022 10:30:19 +0300 Subject: Add tags to tasks (Issue #8) --- src/application.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/application.rs') diff --git a/src/application.rs b/src/application.rs index 9120446..06a033b 100755 --- a/src/application.rs +++ b/src/application.rs @@ -60,6 +60,7 @@ mod imp { fn activate(&self, application: &Self::Type) { // Initialize the database let _ = database::db_init(); + let _ = database::upgrade_old_db(); // Get the current window or create one if necessary let window = if let Some(window) = application.active_window() { @@ -142,7 +143,7 @@ impl FurtheranceApplication { } fn setup_application(&self) { - self.update_light_dark() + self.update_light_dark(); } fn show_about(&self) { -- cgit 1.4.1