Skip to content

Commit

Permalink
Merge pull request #166 from rwth-acis:lakhoune/issue165
Browse files Browse the repository at this point in the history
Lakhoune/issue165
  • Loading branch information
lakhoune authored May 28, 2023
2 parents 264a5f9 + c1f102d commit 9b19622
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@rwth-acis/syncmeta-widgets",
"description": "SyncMeta is a near real-time collaborative modeling framework. This package only contains the used widgets. If you want to use the SyncMeta app in a docker container, see https://github.com/rwth-acis/syncmeta.",
"version": "2.4.5",
"version": "2.4.6",
"author": {
"name": "ACIS Group, RWTH Aachen",
"email": "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion src/es6/canvas_widget/Canvas.js
Original file line number Diff line number Diff line change
Expand Up @@ -1843,7 +1843,7 @@ export default class Canvas extends AbstractCanvas {
var selectedEntity = EntityManager.find(selection);
if (selectedEntity)
selectedEntity.highlight(
Util.getColor(userInfo.globalId),
Util.getColor(userInfo?.globalId),
userInfo[CONFIG.NS.PERSON.TITLE]
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/es6/canvas_widget/Manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -2447,7 +2447,7 @@ export class AbstractNode extends AbstractEntity {
}
}
this._draw();
this.repaint();
jsPlumbInstance.repaintEverything();
};

this.moveAbs = function (left, top, zIndex) {
Expand Down

0 comments on commit 9b19622

Please sign in to comment.