mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-04-19 10:53:29 +00:00
Lower how much CTRL+arrow key changes the number.
This commit is contained in:
parent
f03dade5ab
commit
b8c636b10d
@ -58,7 +58,7 @@ name:id,
|
|||||||
|
|
||||||
function editAttention(event) {
|
function editAttention(event) {
|
||||||
const inputField = event.composedPath()[0];
|
const inputField = event.composedPath()[0];
|
||||||
const delta = 0.1;
|
const delta = 0.025;
|
||||||
|
|
||||||
if (inputField.tagName !== "TEXTAREA") return;
|
if (inputField.tagName !== "TEXTAREA") return;
|
||||||
if (!(event.key === "ArrowUp" || event.key === "ArrowDown")) return;
|
if (!(event.key === "ArrowUp" || event.key === "ArrowDown")) return;
|
||||||
|
Loading…
Reference in New Issue
Block a user