Skip to content

Commit

Permalink
Merge pull request #832 from liveontologies/master
Browse files Browse the repository at this point in the history
Fix caching for #723
  • Loading branch information
matthewhorridge committed Jan 18, 2019
2 parents 5006baa + 67623e6 commit 83bbe6a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ private void setupLinkedObjectComponent(JComponent component, Rectangle cellRect
}
if (component instanceof LinkedObjectComponent && OWLRendererPreferences.getInstance().isRenderHyperlinks()) {
linkedObjectComponent = (LinkedObjectComponent) component;
Point mouseLoc = component.getMousePosition(true);
Point mouseLoc = component.getMousePosition();
if (mouseLoc == null) {
linkedObjectComponent.setLinkedObject(null);
return;
Expand Down

0 comments on commit 83bbe6a

Please sign in to comment.