Skip to content

Commit

Permalink
MID-2805
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Mar 30, 2016
1 parent 9a77b1a commit 83420d5
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -81,7 +81,9 @@ public ID getItemDefinition() {
}

public boolean isVisible() {
if (item.getDefinition().isOperational()) { // TODO ...or use itemDefinition instead?
if (item.getDefinition().isEmphasized()){
return true;
} else if (item.getDefinition().isOperational()) { // TODO ...or use itemDefinition instead?
return false;
} else if (container != null) {
return container.isItemVisible(this);
Expand Down

0 comments on commit 83420d5

Please sign in to comment.