Skip to content

Commit fc55810

Browse files
committed
🎨 #14638
1 parent 4e13146 commit fc55810

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/protyle/wysiwyg/keydown.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ export const keydown = (protyle: IProtyle, editorElement: HTMLElement) => {
329329
return;
330330
}
331331

332-
if (isNotCtrl(event) && event.shiftKey && (event.key === "ArrowLeft" || event.key === "ArrowRight")) {
332+
if (event.shiftKey && (event.key === "ArrowLeft" || event.key === "ArrowRight")) {
333333
const selectElements = protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--select");
334334
if (selectElements.length > 0) {
335335
event.stopPropagation();

0 commit comments

Comments
 (0)