Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ public SceneInteractor(AbstractCamera camera, Component component) {
public abstract String getToolTipText();

public void notifyObservers() {
if (TmModelManager.getInstance().getCurrentSample() == null)
// no sample, no notifications
return;

camera.getVantage().notifyObservers();
Vantage vantage = camera.getVantage();
Matrix m2v = TmModelManager.getInstance().getMicronToVoxMatrix();
Expand Down