Skip to content
Snippets Groups Projects
Commit ffe14111 authored by Raphael GIRARDOT's avatar Raphael GIRARDOT Committed by Patrick MADELA
Browse files

minor changes

parent 82fc215b
No related branches found
No related tags found
No related merge requests found
...@@ -54,9 +54,9 @@ public class InfoNodeView extends View implements IView { ...@@ -54,9 +54,9 @@ public class InfoNodeView extends View implements IView {
@Override @Override
public boolean isVisible() { public boolean isVisible() {
boolean visible; boolean visible;
if (super.isShowing()) { if (isShowing()) {
visible = true; visible = true;
} else if (super.getWindowParent() != null && super.getWindowParent().isRestorable()) { } else if ((getWindowParent() != null) && getWindowParent().isRestorable()) {
visible = true; visible = true;
} else { } else {
visible = false; visible = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment