Fix bug with token opacity when changing tools with a shortcut

This commit is contained in:
Mitchell McCaffrey 2020-06-27 10:04:54 +10:00
parent f0edfb8cbc
commit 3744364981

View File

@ -140,7 +140,7 @@ function MapToken({
} }
function handlePointerOut() { function handlePointerOut() {
if (!draggable) { if (tokenOpacity !== 1.0) {
setTokenOpacity(1.0); setTokenOpacity(1.0);
} }
} }