From 9417ba790283e37568009176824082c764b26b0a Mon Sep 17 00:00:00 2001 From: tim h Date: Thu, 24 Nov 2022 08:46:02 -0600 Subject: [PATCH] fix issue 47 Former-commit-id: ac5e43439e0a1b56243c522c750ecd7b8e0323fc --- js/index.js | 2 +- js/ui/toolbar.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/js/index.js b/js/index.js index dfa489a..c81d30c 100644 --- a/js/index.js +++ b/js/index.js @@ -397,7 +397,7 @@ function checkProgress(bb) { document.getElementById("estRemaining").innerText = estimate; }); - }, 1500); + }, 1000); } function mouseMove(evt) { diff --git a/js/ui/toolbar.js b/js/ui/toolbar.js index a45d186..c439e72 100644 --- a/js/ui/toolbar.js +++ b/js/ui/toolbar.js @@ -353,9 +353,9 @@ tools.img2img = toolbar.registerTool( menu.appendChild(document.createElement("br")); menu.appendChild(state.ctxmenu.denoisingStrengthSlider); menu.appendChild(document.createElement("br")); - menu.appendChild(state.ctxmenu.useBorderMaskLabel); + menu.appendChild(state.ctxmenu.useBorderMaskSlider); menu.appendChild(document.createElement("br")); - menu.appendChild(state.ctxmenu.borderMaskSlider); + menu.appendChild(state.ctxmenu.borderMaskSize); }, shortcut: "I", }