Skip to content

Commit

Permalink
Merge pull request #3256 from mehmet-karaman/Bugfix_for_Sticky_Hover_…
Browse files Browse the repository at this point in the history
…2534

Bugfix for Hover which is visible above other application windows.
  • Loading branch information
LorenzoBettini authored Dec 4, 2024
2 parents 8190316 + 576de41 commit e3aa908
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -514,15 +514,16 @@ public static boolean isAvailable(Composite parent) {
@Override
public void setVisible(boolean visible) {
Shell shell = getShell();
if (shell.isVisible() == visible)
return;

if (!visible) {
super.setVisible(false);
setInput(null);
startDisposeTimeout(shell.getDisplay());
return;
}

if (shell.isVisible() == visible)
return;

/*
* The Browser widget flickers when made visible while it is not completely loaded.
Expand Down

0 comments on commit e3aa908

Please sign in to comment.