8000 [ATL-1599] [ATL-1416] Upgrade Theia to 1.18.0 by fstasi · Pull Request #489 · arduino/arduino-ide · GitHub
[go: up one dir, main page]

Skip to content

[ATL-1599] [ATL-1416] Upgrade Theia to 1.18.0 #489

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Oct 6, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix context menus
  • Loading branch information
fstasi committed Sep 2, 2021
commit f09d05b98212c498d2a42c90aa46a590e4791451
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ export class CloudSketchbookContribution extends Contribution {
x: container.getBoundingClientRect().left,
y: container.getBoundingClientRect().top + container.offsetHeight,
},
args: arg,
args: [arg],
};
this.contextMenuRenderer.render(options);
},
Expand Down Expand Up @@ -345,7 +345,7 @@ export class CloudSketchbookContribution extends Contribution {
container.getBoundingClientRect().top -
3.5 * container.offsetHeight,
},
args: arg,
args: [arg],
};
this.contextMenuRenderer.render(options);
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,13 +173,14 @@ export class SketchbookWidgetContribution
);
}

debugger;
const options: RenderContextMenuOptions = {
menuPath: SKETCHBOOK__CONTEXT,
anchor: {
x: container.getBoundingClientRect().left,
y: container.getBoundingClientRect().top + container.offsetHeight,
},
args: arg,
args: [arg],
};
this.contextMenuRenderer.render(options);
},
Expand Down
0