about summary refs log tree commit diff
path: root/src/application.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/application.rs')
-rwxr-xr-xsrc/application.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/application.rs b/src/application.rs
index 4edb64d..9120446 100755
--- a/src/application.rs
+++ b/src/application.rs
@@ -179,6 +179,8 @@ impl FurtheranceApplication {
             (&gettext("Delete"), gtk::ResponseType::Accept)
         ]);
         dialog.set_default_response(gtk::ResponseType::Accept);
+        let delete_btn = dialog.widget_for_response(gtk::ResponseType::Accept).unwrap();
+        delete_btn.add_css_class("destructive-action");
 
         let message_area = dialog.message_area().downcast::<gtk::Box>().unwrap();
         let explanation = gtk::Label::new(Some(&gettext("This will delete ALL of your task history.")));