# HG changeset patch
# User Chris Cannam
# Date 1541519007 0
# Node ID ebea71799f32543e04175fe90695330c3f28cbe0
# Parent  84f0a4b0eb97239a0f15bd99edd90bab3d557252# Parent  63da6a82c12d3f1f5053f91151bf667d1c7e8af3
Merge from default branch

diff -r 84f0a4b0eb97 -r ebea71799f32 main/MainWindow.cpp
--- a/main/MainWindow.cpp	Tue Nov 06 13:38:42 2018 +0000
+++ b/main/MainWindow.cpp	Tue Nov 06 15:43:27 2018 +0000
@@ -4976,10 +4976,18 @@
     QWidget *w = dynamic_cast<QWidget *>(sender());
     if (!w) return;
 
+    QString mainText, editText;
+
     if (w == m_mainLevelPan) {
-        contextHelpChanged(tr("Adjust the master playback level and pan"));
+        mainText = tr("Adjust the master playback level and pan");
+        editText = tr("click then drag to adjust, ctrl+click to reset");
     } else if (w == m_playSpeed) {
-        contextHelpChanged(tr("Adjust the master playback speed"));
+        mainText = tr("Adjust the master playback speed");
+        editText = tr("drag up/down to adjust, ctrl+click to reset");
+    }
+
+    if (mainText != "") {
+        contextHelpChanged(tr("%1: %2").arg(mainText).arg(editText));
     }
 }