Skip to content
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

fix Issue #237947: Tooltip for Close Button in Dialog Box is Obscure… #237960

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
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
5 changes: 3 additions & 2 deletions src/vs/editor/browser/services/hoverService/hoverService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -477,8 +477,9 @@ function getHoverOptionsIdentity(options: IHoverOptions | undefined): IHoverOpti

class HoverContextViewDelegate implements IDelegate {

// Render over all other context views
public readonly layer = 1;
// Render over all other context views and dialogs
// Set the layer to 26 to fix the issue https://github.com/microsoft/vscode/issues/237947
public readonly layer = 26;

get anchorPosition() {
return this._hover.anchor;
Expand Down