Skip to content

Commit 8fef410

Browse files
committed
minor
1 parent 330d6c7 commit 8fef410

File tree

1 file changed

+4
-4
lines changed
  • services/static-webserver/client/source/class/osparc/workbench

1 file changed

+4
-4
lines changed

services/static-webserver/client/source/class/osparc/workbench/WorkbenchUI.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ qx.Class.define("osparc.workbench.WorkbenchUI", {
129129
__selectedItemId: null,
130130
__startHint: null,
131131
__toolHint: null,
132-
__dropHereNodeUI: null,
132+
__dropHereUI: null,
133133
__selectionRectInitPos: null,
134134
__selectionRectRepr: null,
135135
__panning: null,
@@ -1808,16 +1808,16 @@ qx.Class.define("osparc.workbench.WorkbenchUI", {
18081808
__updateDropHere: function(show, posX, posY) {
18091809
const boxWidth = 120;
18101810
const boxHeight = 60;
1811-
if (this.__dropHereNodeUI === null) {
1812-
const dropHereNodeUI = this.__dropHereNodeUI = new qx.ui.basic.Label(this.tr("Drop here")).set({
1811+
if (this.__dropHereUI === null) {
1812+
const dropHereNodeUI = this.__dropHereUI = new qx.ui.basic.Label(this.tr("Drop here")).set({
18131813
font: "workbench-start-hint",
18141814
textColor: "workbench-start-hint"
18151815
});
18161816
dropHereNodeUI.exclude();
18171817
this.__workbenchLayout.add(dropHereNodeUI);
18181818
dropHereNodeUI.rect = this.__svgLayer.drawDashedRect(boxWidth, boxHeight);
18191819
}
1820-
let dropHere = this.__dropHereNodeUI;
1820+
let dropHere = this.__dropHereUI;
18211821
if (show) {
18221822
dropHere.show();
18231823
const dropMeBounds = dropHere.getBounds() || dropHere.getSizeHint();

0 commit comments

Comments
 (0)