From 48fb3d02ca40c3252c3dd49f9f391d8e8b23124f Mon Sep 17 00:00:00 2001 From: Lleyton Gray Date: Sun, 4 Feb 2024 18:00:48 -0800 Subject: [PATCH] style: lint fix is broken :/ --- src/MessageHandler.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MessageHandler.vala b/src/MessageHandler.vala index f29472c..cc212ec 100644 --- a/src/MessageHandler.vala +++ b/src/MessageHandler.vala @@ -58,7 +58,7 @@ public class SkiffDesktop.MessageHandler { notification.set_default_action_and_target ("app.open-thread", "s", notification_item.thread_id); notification.add_button_with_target (_("Mark As Read"), "app.mark-as-read", "s", notification_item.thread_id); // notification.add_button_with_target(_("Mark As Spam"), "app.mark-as-spam", "s", notification_item.thread_id); kinda useless IMO (plus, goes over GNOME's limit :/) - notification.add_button_with_target( _("Trash"), "app.trash-thread", "s", notification_item.thread_id); + notification.add_button_with_target (_("Trash"), "app.trash-thread", "s", notification_item.thread_id); notification.add_button_with_target (_("Archive"), "app.archive-thread", "s", notification_item.thread_id); GLib.Application.get_default ().send_notification ("meowy", notification);