We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd72e2e commit 3f73850Copy full SHA for 3f73850
js/activity.js
@@ -6091,8 +6091,9 @@ class Activity {
6091
document.getElementById("toolbars").addEventListener("mouseover", () => {this.isDragging = false;});
6092
6093
this.selectMode = () => {
6094
- this.isSelecting = !this.isSelecting;;
6095
- if (this.moving) this.moving = false;
+ this.moving = false;
+ this.isSelecting = !this.isSelecting;
6096
+ (this.isSelecting) ? this.textMsg(_("Select is enabled")) : this.textMsg(_("Select is disabled"));
6097
}
6098
6099
this._create2Ddrag = () => {
0 commit comments