Package: claws-mail
Version: 4.3.1-1
Severity: normal
Tags: patch
Dear Maintainer,
while under X11 the key bindings for 'Mark' and 'Mark as unread' work
fine, under Sway they are not recognized. This seems to be because they
require '<shift> + asterisk' and '<shift> + exclam' but when pressing
shift, another keycode will be send under Sway. 'asterisk' and 'exclam'
are not used as key bindings for another function. So just changing the
key bindings to be those, make them work under both X11 and Sway
(without actually changing the keys that need to be pressed).
Best regards,
Julian
--
() ascii ribbon campaign - against html e-mail
/\ - against proprietary attachments
diff --git a/src/mainwindow.c b/src/mainwindow.c
index 9dc04ede9..3dad562a1 100644
--- a/src/mainwindow.c
+++ b/src/mainwindow.c
@@ -699,12 +699,12 @@ static GtkActionEntry mainwin_entries[] =
{"Message/CancelNews", NULL, N_("Cancel a news message"), NULL, NULL, G_CALLBACK(cancel_cb) },
/* separation */
{"Message/Marks", NULL, N_("_Marks"), NULL, NULL, NULL },
- {"Message/Marks/Mark", NULL, N_("_Mark"), "<shift>asterisk", NULL, G_CALLBACK(mark_cb) },
+ {"Message/Marks/Mark", NULL, N_("_Mark"), "asterisk", NULL, G_CALLBACK(mark_cb) },
{"Message/Marks/Unmark", NULL, N_("_Unmark"), "U", NULL, G_CALLBACK(unmark_cb) },
{"Message/Marks/---", NULL, "---", NULL, NULL, NULL },
{"Message/Marks/MarkRead", NULL, N_("Mark as rea_d"), NULL, NULL, G_CALLBACK(mark_as_read_cb) },
- {"Message/Marks/MarkUnread", NULL, N_("Mark as unr_ead"), "<shift>exclam", NULL, G_CALLBACK(mark_as_unread_cb) },
+ {"Message/Marks/MarkUnread", NULL, N_("Mark as unr_ead"), "exclam", NULL, G_CALLBACK(mark_as_unread_cb) },
/* separation */
{"Message/Marks/MarkAllRead", NULL, N_("Mark all read in folder"), NULL, NULL, G_CALLBACK(mark_all_read_cb) },
{"Message/Marks/MarkAllUnread", NULL, N_("Mark all unread in folder"), NULL, NULL, G_CALLBACK(mark_all_unread_cb) },