diff Applications/Samples/Sdl/SingleFrameViewer/SdlSimpleViewer.cpp @ 1998:1fa3f484008e

added arrows to AnnotationsSceneLayer::Segment
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 02 Nov 2022 13:08:50 +0100
parents ba45e1b0812a
children 07964689cb0b
line wrap: on
line diff
--- a/Applications/Samples/Sdl/SingleFrameViewer/SdlSimpleViewer.cpp	Tue Nov 01 19:42:27 2022 +0100
+++ b/Applications/Samples/Sdl/SingleFrameViewer/SdlSimpleViewer.cpp	Wed Nov 02 13:08:50 2022 +0100
@@ -81,7 +81,7 @@
             << "  c\tCreate circle annotations" << std::endl
             << "  d\tDelete mode for annotations" << std::endl
             << "  e\tCreate ellipse probe" << std::endl
-            << "  l\tCreate line annotations" << std::endl
+            << "  l\tCreate length annotations" << std::endl
             << "  m\tModification/edit mode, don't create annotation (default)" << std::endl
             << "  p\tCreate pixel probe" << std::endl
             << "  r\tCreate rectangle probe" << std::endl
@@ -317,7 +317,7 @@
 
                   case SDLK_l:
 #if SAMPLE_USE_ANNOTATIONS_LAYER == 1
-                    annotations.SetActiveTool(OrthancStone::AnnotationsSceneLayer::Tool_Segment);
+                    annotations.SetActiveTool(OrthancStone::AnnotationsSceneLayer::Tool_Length);
 #else
                     if (activeTool == ActiveTool_Line)
                     {