Lower how much CTRL+arrow key changes the number.

This commit is contained in:
comfyanonymous 2023-04-17 18:21:24 -04:00
parent f03dade5ab
commit b8c636b10d
1 changed files with 1 additions and 1 deletions

View File

@ -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;