aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.cpp b/main.cpp
index cf752a0..a124ac3 100644
--- a/main.cpp
+++ b/main.cpp
@@ -269,11 +269,11 @@ int main(int argc, char **argv)
// Connect projection components to rewinding mechanism
QObject::connect(plotTC, &TransitionControl::tChanged,
&manipulationHandler, &ManipulationHandler::setRewind);
- QObject::connect(&manipulationHandler, &ManipulationHandler::mapRewound,
- m, &Main::updateMap);
-
QObject::connect(plotTC, &TransitionControl::tChanged,
m->projectionObserver, &ProjectionObserver::setRewind);
+
+ QObject::connect(&manipulationHandler, &ManipulationHandler::mapRewound,
+ m, &Main::updateMap);
QObject::connect(m->projectionObserver, &ProjectionObserver::cpValuesRewound,
m->cpPlot, &Scatterplot::setColorData);
QObject::connect(m->projectionObserver, &ProjectionObserver::rpValuesRewound,