From 926ab7233453270f3b0f71ed8ec3307286671f1e Mon Sep 17 00:00:00 2001 From: Aline Gondim Santos <aline.gondimsantos@savoirfairelinux.com> Date: Wed, 23 Aug 2023 13:57:31 -0300 Subject: [PATCH] markdown: fix keyboard shortcuts Change-Id: Ic02ab2df7a4a3870dbbe2f0e23160f13281ba2ac GitLab: #1321 --- src/app/mainview/components/MessageBar.qml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/mainview/components/MessageBar.qml b/src/app/mainview/components/MessageBar.qml index 834f898eb..05759959a 100644 --- a/src/app/mainview/components/MessageBar.qml +++ b/src/app/mainview/components/MessageBar.qml @@ -219,32 +219,32 @@ RowLayout { }, "Link": function () { if (!showPreview) { - listViewTypoSecond.itemAtIndex(0).action.triggered(); + listViewTypoFirst.itemAtIndex(4).action.triggered(); } }, "Code": function () { if (!showPreview) { - listViewTypoSecond.itemAtIndex(1).action.triggered(); + listViewTypoFirst.itemAtIndex(5).action.triggered(); } }, "Quote": function () { if (!showPreview) { - listViewTypoSecond.itemAtIndex(2).action.triggered(); + listViewTypoSecond.itemAtIndex(0).action.triggered(); } }, "Unordered list": function () { if (!showPreview) { - listViewTypoSecond.itemAtIndex(3).action.triggered(); + listViewTypoSecond.itemAtIndex(1).action.triggered(); } }, "Ordered list": function () { if (!showPreview) { - listViewTypoSecond.itemAtIndex(4).action.triggered(); + listViewTypoSecond.itemAtIndex(2).action.triggered(); } }, "Enter is new line": function () { if (!showPreview) { - listViewTypoSecond.itemAtIndex(5).action.triggered(); + listViewTypoSecond.itemAtIndex(3).action.triggered(); } } } -- GitLab