Skip to content

Commit acfe5f2

Browse files
committed
Resolves sugarlabs#3849
1 parent e44efae commit acfe5f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/block.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2819,7 +2819,7 @@ class Block {
28192819
let topBlk;
28202820

28212821
const dx = event.stageX / that.activity.getStageScale() - that.container.x;
2822-
if (!moved && that.isCollapsible() && dx < 30 / that.activity.getStageScale()) {
2822+
if (that.isCollapsible() && dx < 30 / that.activity.getStageScale()) {
28232823
that.collapseToggle();
28242824
} else if ((!window.hasMouse && getInput) || (window.hasMouse && !moved)) {
28252825
if (that.name === "media") {

0 commit comments

Comments
 (0)