Community
Participate
Working Groups
Current implementation of setBlocked() in class NavigationNode looks like this. /** * @see org.eclipse.riena.navigation.INavigationNode#setBlocked(boolean) */ public void setBlocked(final boolean blocked) { this.blocked = blocked; notifyBlockedChanged(); // taken out because it has caused some problems // for (final INavigationNode<?> child : getChildren()) { // child.setBlocked(blocked); // } } notifyBlockedChanged() gets called even if nothing has changed.
Fixed in HEAD