From 468e55f078476d1124aa58a431d322b7df072e9c Mon Sep 17 00:00:00 2001 From: Eberhard Graether Date: Tue, 31 May 2016 16:44:24 +0200 Subject: [PATCH] ui: Repaint graph view after animation to remove artifacts bug id = 75 --- src/lib_gui/qt/view/QtGraphView.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib_gui/qt/view/QtGraphView.cpp b/src/lib_gui/qt/view/QtGraphView.cpp index c00ff3be..5a025066 100644 --- a/src/lib_gui/qt/view/QtGraphView.cpp +++ b/src/lib_gui/qt/view/QtGraphView.cpp @@ -175,6 +175,9 @@ void QtGraphView::switchToNewGraphData() node->hoverEnter(); } } + + // Repaint to make sure all artifacts are removed + view->update(); } QtGraphicsView* QtGraphView::getView() const