mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-04-06 04:39:01 +08:00
respect keyedit_precision_attention setting when converting from old (((attention))) syntax
This commit is contained in:
parent
a3d9b011a3
commit
2f6ea8b103
@ -86,6 +86,8 @@ function keyupEditAttention(event) {
|
||||
weight = (1 / 1.1) ** numParen;
|
||||
}
|
||||
|
||||
weight = Math.round(weight / opts.keyedit_precision_attention) * opts.keyedit_precision_attention;
|
||||
|
||||
text = text.slice(0, selectionStart - numParen) + "(" + text.slice(selectionStart, selectionEnd) + ":" + weight + ")" + text.slice(selectionEnd + numParen);
|
||||
selectionStart -= numParen - 1;
|
||||
selectionEnd -= numParen - 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user