Skip to content

Commit

Permalink
GP-0 fixing tests broken from GP-4466
Browse files Browse the repository at this point in the history
  • Loading branch information
ghidragon committed Apr 2, 2024
1 parent 1fa1963 commit 5bf2f6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ public Class<?> getContextType() {
* @return true if this provider is showing.
*/
public boolean isVisible() {
return dockingTool.isVisible(this);
return dockingTool != null && dockingTool.isVisible(this);
}

/**
Expand Down

0 comments on commit 5bf2f6b

Please sign in to comment.