diff --git a/apps/opencs/view/render/instancemode.cpp b/apps/opencs/view/render/instancemode.cpp
index df5ba7621..4eb9ea388 100644
--- a/apps/opencs/view/render/instancemode.cpp
+++ b/apps/opencs/view/render/instancemode.cpp
@@ -42,14 +42,14 @@ void CSVRender::InstanceMode::activate (CSVWidget::SceneToolbar *toolbar)
mSubMode->addButton (new InstanceMoveMode (this), "move");
mSubMode->addButton (":placeholder", "rotate",
"Rotate selected instances"
- "
- Use primary edit to rotate instances freely
"
- "- Use secondary edit to rotate instances within the grid
"
+ "- Use {scene-edit-primary} to rotate instances freely
"
+ "- Use {scene-edit-secondary} to rotate instances within the grid
"
"
"
"Not implemented yet");
mSubMode->addButton (":placeholder", "scale",
"Scale selected instances"
- "- Use primary edit to scale instances freely
"
- "- Use secondary edit to scale instances along the grid
"
+ "- Use {scene-edit-primary} to scale instances freely
"
+ "- Use {scene-edit-secondary} to scale instances along the grid
"
"
"
"Not implemented yet");
diff --git a/apps/opencs/view/render/instancemovemode.cpp b/apps/opencs/view/render/instancemovemode.cpp
index 9929f5fcb..fe58b581b 100644
--- a/apps/opencs/view/render/instancemovemode.cpp
+++ b/apps/opencs/view/render/instancemovemode.cpp
@@ -4,8 +4,8 @@
CSVRender::InstanceMoveMode::InstanceMoveMode (QWidget *parent)
: ModeButton (QIcon (QPixmap (":placeholder")),
"Move selected instances"
- "- Use primary edit to move instances around freely
"
- "- Use secondary edit to move instances around within the grid
"
+ "- Use {scene-edit-primary} to move instances around freely
"
+ "- Use {scene-edit-secondary} to move instances around within the grid
"
"
"
"Grid move not implemented yet",
parent)
diff --git a/apps/opencs/view/render/selectionmode.cpp b/apps/opencs/view/render/selectionmode.cpp
index 82a3c49e4..cf0967e47 100644
--- a/apps/opencs/view/render/selectionmode.cpp
+++ b/apps/opencs/view/render/selectionmode.cpp
@@ -15,22 +15,28 @@ namespace CSVRender
{
addButton(":placeholder", "cube-centre",
"Centred cube"
- "- Drag with primary (make instances the selection) or secondary (invert selection state) select button from the centre of the selection cube outwards
"
+ "- Drag with {scene-select-primary} (make instances the selection) or {scene-select-secondary} "
+ "(invert selection state) from the centre of the selection cube outwards
"
"- The selection cube is aligned to the word space axis
"
- "- If context selection mode is enabled, a drag with primary/secondary edit not starting on an instance will have the same effect
"
+ "- If context selection mode is enabled, a drag with {scene-edit-primary} or {scene-edit-secondary} not "
+ "starting on an instance will have the same effect
"
"
"
"Not implemented yet");
addButton(":placeholder", "cube-corner",
"Cube corner to corner"
- "- Drag with primary (make instances the selection) or secondary (invert selection state) select button from one corner of the selection cube to the opposite corner
"
+ "- Drag with {scene-select-primary} (make instances the selection) or {scene-select-secondary} "
+ "(invert selection state) from one corner of the selection cube to the opposite corner
"
"- The selection cube is aligned to the word space axis
"
- "- If context selection mode is enabled, a drag with primary/secondary edit not starting on an instance will have the same effect
"
+ "- If context selection mode is enabled, a drag with {scene-edit-primary} or {scene-edit-secondary} not "
+ "starting on an instance will have the same effect
"
"
"
"Not implemented yet");
addButton(":placeholder", "sphere",
"Centred sphere"
- "- Drag with primary (make instances the selection) or secondary (invert selection state) select button from the centre of the selection sphere outwards
"
- "- If context selection mode is enabled, a drag with primary/secondary edit not starting on an instance will have the same effect
"
+ "- Drag with {scene-select-primary} (make instances the selection) or {scene-select-secondary} "
+ "(invert selection state) from the centre of the selection sphere outwards
"
+ "- If context selection mode is enabled, a drag with {scene-edit-primary} or {scene-edit-secondary} not "
+ "starting on an instance will have the same effect
"
"
"
"Not implemented yet");