Commit b8c636b1 authored by comfyanonymous's avatar comfyanonymous
Browse files

Lower how much CTRL+arrow key changes the number.

parent f03dade5
......@@ -58,7 +58,7 @@ name:id,
function editAttention(event) {
const inputField = event.composedPath()[0];
const delta = 0.1;
const delta = 0.025;
if (inputField.tagName !== "TEXTAREA") return;
if (!(event.key === "ArrowUp" || event.key === "ArrowDown")) return;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment