From bb0bd2971556bd9fc42f88bc7b03775f249ca768 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 10 Sep 2022 19:04:24 +0100 Subject: [PATCH] Improve tooltips. Fixes https://gitlab.com/kicad/code/kicad/issues/10843 --- eeschema/tools/ee_actions.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/eeschema/tools/ee_actions.cpp b/eeschema/tools/ee_actions.cpp index 0cff2ee1b6..2cc44b5f95 100644 --- a/eeschema/tools/ee_actions.cpp +++ b/eeschema/tools/ee_actions.cpp @@ -696,17 +696,19 @@ TOOL_ACTION EE_ACTIONS::toggleERCExclusions( "eeschema.EditorControl.showERCExcl TOOL_ACTION EE_ACTIONS::lineModeFree( "eeschema.EditorControl.lineModeFree", AS_GLOBAL, 0, "", - _( "Line Mode for Wires and Buses" ), _( "Lines drawn at any angle" ), + _( "Line Mode for Wires and Buses" ), _( "Draw and drag at any angle" ), BITMAPS::lines_any, AF_NONE, (void*) LINE_MODE::LINE_MODE_FREE ); TOOL_ACTION EE_ACTIONS::lineMode90( "eeschema.EditorControl.lineModeOrthonal", AS_GLOBAL, 0, "", - _( "Line Mode for Wires and Buses" ), _( "Lines drawn horizontally and vertically" ), + _( "Line Mode for Wires and Buses" ), + _( "Constrain drawing and dragging to horizontal or vertical motions" ), BITMAPS::lines90, AF_NONE, (void*) LINE_MODE::LINE_MODE_90); TOOL_ACTION EE_ACTIONS::lineMode45( "eeschema.EditorControl.lineMode45", AS_GLOBAL, 0, "", - _( "Line Mode for Wires and Buses" ), _( "Lines drawn horizontally, vertically, and at a 45 degree angle" ), + _( "Line Mode for Wires and Buses" ), + _( "Constrain drawing and dragging to horizontal, vertical, or 45-degree angle motions" ), BITMAPS::hv45mode, AF_NONE, (void*) LINE_MODE::LINE_MODE_45); TOOL_ACTION EE_ACTIONS::lineModeNext( "eeschema.EditorControl.lineModeNext",