From 3b98d77324a39d8709ed44983212c485c23ae935 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacob=20St=C3=B8ren?= Date: Tue, 22 Sep 2015 21:00:50 +0200 Subject: [PATCH] (#517) Fixed crash due to direct call to CreateDisplayModelAndUpdate But there are ore ... --- ApplicationCode/ProjectDataModel/RimView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ApplicationCode/ProjectDataModel/RimView.cpp b/ApplicationCode/ProjectDataModel/RimView.cpp index 5109172125..ea57abd627 100644 --- a/ApplicationCode/ProjectDataModel/RimView.cpp +++ b/ApplicationCode/ProjectDataModel/RimView.cpp @@ -699,7 +699,7 @@ void RimView::setScaleZAndUpdate(double scaleZ) { this->scaleZ = scaleZ; updateScaleTransform(); - createDisplayModelAndRedraw(); + this->scheduleCreateDisplayModelAndRedraw(); } //--------------------------------------------------------------------------------------------------