From ce9eebd61bbc034ce027676f0a46bb31afdca547 Mon Sep 17 00:00:00 2001 From: Paolo Cignoni Date: Thu, 3 Oct 2024 13:03:49 +0200 Subject: [PATCH] Small changes to the onscreen help --- src/meshlab/glarea.cpp | 1 + src/meshlab/images/onscreenHelp.txt | 14 ++++++++++---- src/meshlab/layerDialog.cpp | 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/src/meshlab/glarea.cpp b/src/meshlab/glarea.cpp index d10ce079c3..b9b744f4df 100644 --- a/src/meshlab/glarea.cpp +++ b/src/meshlab/glarea.cpp @@ -951,6 +951,7 @@ void GLArea::displayHelp() else assert(0); #ifdef Q_OS_MAC tableText.replace("Ctrl","Command"); + tableText.replace("Command-H","Command-Shift-H"); #endif } md()->Log.realTimeLog("Quick Help","",tableText); diff --git a/src/meshlab/images/onscreenHelp.txt b/src/meshlab/images/onscreenHelp.txt index ea09126e02..2130f3cecc 100644 --- a/src/meshlab/images/onscreenHelp.txt +++ b/src/meshlab/images/onscreenHelp.txt @@ -4,17 +4,16 @@ + - + - - - +
Drag: Rotate
Double Click: Center Trackball on the indicate point
Ctrl-Drag: Pan
Shift-Drag: Zoom
Wheel: Zoom
Wheel: Zoom
Alt-Drag: Z-Panning
Ctrl-Shift-Drag: Change light direction
Shift-Wheel: Change perspective (up to a orthographic camera)
Ctrl-Wheel: Move near clipping plane
(in image space: 0 is viewer position, 1 is trackball center)
Double Click: Center on mouse
Alt+enter: Enter/Exit fullscreen mode
Ctrl-H: Reset Trackball (WINDOWS)
Command-Shift-H: Reset Trackball (MacOS)
Ctrl-H: Reset Trackball

@@ -25,5 +24,12 @@ Ctrl-Click on eye icon: Make Invisible all other layers Alt-Click on eye icon: Make Visible all other layers Shift-Click on eye icon: Invert visibility status of all the layers + +Ctrl-Click on the left 1-2-3-4: Store current camera in the i-th position +Click on the left 1-2-3-4: Recall i-th camera position + +Ctrl-Click on the right 1-2-3-4: Store current visibility of layers in the i-th position +Click on the right 1-2-3-4: Recall i-th visibility of layers + diff --git a/src/meshlab/layerDialog.cpp b/src/meshlab/layerDialog.cpp index 9bae3907fc..88f8a83b6a 100644 --- a/src/meshlab/layerDialog.cpp +++ b/src/meshlab/layerDialog.cpp @@ -1056,7 +1056,7 @@ void LayerDialog::pauseAnim() { animTimer->stop(); ui->animPlay->setChecked(false); - ui->animPlay->setText(tr(">")); + ui->animPlay->setText(tr("▶️")); ui->animPlay->setToolTip(tr("Resume animation")); }