Need to dirty indicators when they're recomputed, otherwise the result of the recomputation doesn't show up till something else changes
git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@801 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
@@ -1066,11 +1066,14 @@ public class MisoScenePanel extends VirtualMediaPanel
|
||||
} else {
|
||||
indic.update(icon, tiptext);
|
||||
}
|
||||
dirtyIndicator(indic);
|
||||
}
|
||||
}
|
||||
// clear out any no longer used indicators
|
||||
for (SceneObject toremove : _unupdated.keySet()) {
|
||||
_indicators.remove(toremove).removed();
|
||||
SceneObjectIndicator indic = _indicators.remove(toremove);
|
||||
indic.removed();
|
||||
dirtyIndicator(indic);
|
||||
}
|
||||
|
||||
_indicatorsLaidOut = false;
|
||||
|
||||
Reference in New Issue
Block a user