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

Commit

Permalink
style: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lleyton committed Feb 5, 2024
1 parent dddb2e4 commit d163290
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/MessageHandler.vala
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ public class SkiffDesktop.MessageHandler {
notification.set_body (notification_item.body);

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 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(_("Archive"), "app.archive-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 d163290

Please sign in to comment.