diff options
Diffstat (limited to 'src/ui/preferences_window.rs')
-rw-r--r-- | src/ui/preferences_window.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ui/preferences_window.rs b/src/ui/preferences_window.rs index c7f6344..bd135de 100644 --- a/src/ui/preferences_window.rs +++ b/src/ui/preferences_window.rs @@ -73,6 +73,9 @@ mod imp { pub autosave_spin: TemplateChild<gtk::SpinButton>, #[template_child] + pub inclusive_total_switch: TemplateChild<gtk::Switch>, + + #[template_child] pub database_loc_row: TemplateChild<adw::ActionRow>, #[template_child] pub database_browse_btn: TemplateChild<gtk::Button>, @@ -181,6 +184,8 @@ impl FurPreferencesWindow { settings_manager::bind_property("autosave-time", &*imp.autosave_spin, "value"); + settings_manager::bind_property("inclusive-total", &*imp.inclusive_total_switch, "active"); + imp.dark_theme_switch.connect_active_notify(move |_| { let app = FurtheranceApplication::default(); app.update_light_dark(); @@ -224,6 +229,11 @@ impl FurPreferencesWindow { window.refresh_timer(); }); + imp.inclusive_total_switch.connect_active_notify(move |_| { + let window = FurtheranceWindow::default(); + window.reset_history_box(); + }); + imp.database_browse_btn.connect_clicked(clone!(@weak self as this => move |_| { let window = FurtheranceApplication::default().active_window().unwrap(); let dialog = gtk::FileChooserDialog::new( |