diff Framework/Scene2DViewport/MeasureCommands.cpp @ 751:712ff6ff3c19

- undo redo now works fine for both measure tool creation commands - added LayerHolder to streamline layer index management - added overloads for ORTHANC_ASSERT with no string message (some heavy preprocessor wizardry in there) - fixing wasm BasicScene is *not* finished.
author Benjamin Golinvaux <bgo@osimis.io>
date Wed, 22 May 2019 11:55:52 +0200
parents 28b9e3a54200
children e42b491f1fb2
line wrap: on
line diff
--- a/Framework/Scene2DViewport/MeasureCommands.cpp	Tue May 21 13:18:35 2019 +0200
+++ b/Framework/Scene2DViewport/MeasureCommands.cpp	Wed May 22 11:55:52 2019 +0200
@@ -28,11 +28,13 @@
   void CreateMeasureCommand::Undo()
   {
     // simply disable the measure tool upon undo
+    GetMeasureTool()->Disable();
     GetController()->RemoveMeasureTool(GetMeasureTool());
   }
 
   void CreateMeasureCommand::Redo()
   {
+    GetMeasureTool()->Enable();
     GetController()->AddMeasureTool(GetMeasureTool());
   }