Skip to content

Commit

Permalink
elyra-ai#1594 Attempt is made to close context toolbar even when tool…
Browse files Browse the repository at this point in the history
…bar is closed (elyra-ai#1595)
  • Loading branch information
tomlyn authored Oct 14, 2023
1 parent fee0ec0 commit 4d8dc5f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4038,7 +4038,9 @@ export default class SVGCanvasRenderer {

removeContextToolbar() {
this.canvasController.setMouseInObject(false);
setTimeout(() => this.canvasController.closeContextToolbar(), 200);
if (this.canvasController.isContextMenuDisplayed()) {
setTimeout(() => this.canvasController.closeContextToolbar(), 200);
}
}

recreateContextToolbar(d3Event, d, objType) {
Expand Down

0 comments on commit 4d8dc5f

Please sign in to comment.