Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

Commit

Permalink
style: more lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lleyton committed Feb 5, 2024
1 parent d163290 commit 4e3711f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MessageHandler.vala
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4e3711f

Please sign in to comment.