Skip to content

Commit

Permalink
Fixed issue where mouse can become stuck to the 'Generate Image Numbe…
Browse files Browse the repository at this point in the history
…r' slider in the settings.

Signed-off-by: marijnvg-tng <[email protected]>
  • Loading branch information
marijnvg-tng committed Dec 2, 2024
1 parent 9fcacb7 commit 06bccec
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions WebUI/src/components/SlideBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ function dragMove(e: PointerEvent) {
if (props.disabled) {
return;
}
if (e.buttons === 0){
dragEnd(e);
return;
}
upadteX(e.clientX);
};
Expand Down

0 comments on commit 06bccec

Please sign in to comment.