From 284fb336a6a29dba91fc18dfa2079ea5b799b219 Mon Sep 17 00:00:00 2001 From: Eberhard Graether Date: Wed, 4 Mar 2015 10:58:50 +0100 Subject: [PATCH] ui: fixed crash on Windows caused by transition animation being deleted right after taking place --- src/app/qt/view/QtGraphView.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/qt/view/QtGraphView.cpp b/src/app/qt/view/QtGraphView.cpp index 191ee7a0..a1acdde8 100644 --- a/src/app/qt/view/QtGraphView.cpp +++ b/src/app/qt/view/QtGraphView.cpp @@ -94,8 +94,6 @@ void QtGraphView::finishedTransition() QGraphicsView* view = getView(); view->setInteractive(true); - m_transition.reset(); - switchToNewGraphData(); }