Selaa lähdekoodia

:art: fix https://github.com/siyuan-note/siyuan/issues/5203

Vanessa 3 vuotta sitten
vanhempi
commit
96a1e4c517
2 muutettua tiedostoa jossa 15 lisäystä ja 1 poistoa
  1. 1 1
      app/src/assets/scss/_text-field.scss
  2. 14 0
      app/src/protyle/toolbar/index.ts

+ 1 - 1
app/src/assets/scss/_text-field.scss

@@ -27,7 +27,7 @@
   }
 
   &--text {
-    border: 0;
+    box-shadow: 0 0 0;
 
     &:focus {
       box-shadow: 0 0 0;

+ 14 - 0
app/src/protyle/toolbar/index.ts

@@ -806,6 +806,7 @@ export class Toolbar {
             });
             textElement.value = Lute.UnEscapeHTMLStr(renderElement.getAttribute("data-content") || "");
         }
+
         textElement.addEventListener("input", (event) => {
             if (!renderElement.parentElement) {
                 return;
@@ -865,6 +866,19 @@ export class Toolbar {
             if (event.isComposing) {
                 return;
             }
+            /// #if !BROWSER
+            if (matchHotKey(window.siyuan.config.keymap.editor.general.undo.custom, event)) {
+                getCurrentWindow().webContents.undo();
+                event.preventDefault();
+                return;
+            }
+            if (matchHotKey(window.siyuan.config.keymap.editor.general.redo.custom, event)) {
+                getCurrentWindow().webContents.redo();
+                event.preventDefault();
+                return;
+            }
+            /// #endif
+
             if (event.key === "Escape" || matchHotKey("⌘Enter", event)) {
                 this.subElement.classList.add("fn__none");
                 this.subElement.querySelector('[data-type="pin"]').classList.remove("ft__primary");