Skip to content

Commit

Permalink
Merge branch 'main' into ts-extra-libs
Browse files Browse the repository at this point in the history
  • Loading branch information
anijanyan committed Jan 31, 2023
2 parents 2614726 + 893168e commit 1e7ce0f
Show file tree
Hide file tree
Showing 9 changed files with 1,643 additions and 4 deletions.
21 changes: 21 additions & 0 deletions package-lock.json

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

4 changes: 3 additions & 1 deletion packages/ace-linters/components/description-tooltip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ export class DescriptionTooltip extends Tooltip {
let session = this.$activeEditor.session;

this.provider.doHover(session, screenPos, (hover) => {
if (!hover)
return;
let description = this.provider.getTooltipText(hover);
if (!description || !description.text) {
this.hide();
Expand Down Expand Up @@ -189,4 +191,4 @@ export class DescriptionTooltip extends Tooltip {
event.removeListener(this.getElement(), "mouseout", this.onMouseOut);
};

}
}
Loading

0 comments on commit 1e7ce0f

Please sign in to comment.