diff --git a/src/Mod/Sketcher/Gui/DrawSketchHandlerArcSlot.h b/src/Mod/Sketcher/Gui/DrawSketchHandlerArcSlot.h index 4cb5ff8bf2..20e2eaa7b7 100644 --- a/src/Mod/Sketcher/Gui/DrawSketchHandlerArcSlot.h +++ b/src/Mod/Sketcher/Gui/DrawSketchHandlerArcSlot.h @@ -97,27 +97,33 @@ public: { using enum Gui::InputHint::UserInput; + const Gui::InputHint switchModeHint {.message = tr("%1 switch mode"), .sequences = {KeyM}}; + return Gui::lookupHints(state(), { {.state = SelectMode::SeekFirst, .hints = { {tr("%1 pick slot center"), {MouseLeft}}, + switchModeHint, }}, {.state = SelectMode::SeekSecond, .hints = { {tr("%1 pick slot radius"), {MouseLeft}}, + switchModeHint, }}, {.state = SelectMode::SeekThird, .hints = { {tr("%1 pick slot angle"), {MouseLeft}}, + switchModeHint, }}, {.state = SelectMode::SeekFourth, .hints = { {tr("%1 pick slot width"), {MouseLeft}}, + switchModeHint, }}, }); }