From 02acf372374bf25d392c0a70b50db205248ae8ed Mon Sep 17 00:00:00 2001 From: Mooneer Salem Date: Sat, 31 Aug 2024 09:31:52 -0700 Subject: [PATCH 1/2] Adjust waterfall/spectrum tooltip based on issue #741. --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 76ce106a..eb9e0768 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -674,7 +674,7 @@ MainFrame::MainFrame(wxWindow *parent) : TopFrame(parent, wxID_ANY, _("FreeDV ") // Add Waterfall Plot window m_panelWaterfall = new PlotWaterfall((wxFrame*) m_auiNbookCtrl, false, 0); - m_panelWaterfall->SetToolTip(_("Double-click to tune")); + m_panelWaterfall->SetToolTip(_("Double click to tune, middle click to re-center")); m_auiNbookCtrl->AddPage(m_panelWaterfall, _("Waterfall"), true, wxNullBitmap); // Add Spectrum Plot window @@ -688,7 +688,7 @@ MainFrame::MainFrame(wxWindow *parent) : TopFrame(parent, wxID_ANY, _("FreeDV ") // Actual Spectrum plot m_panelSpectrum = new PlotSpectrum(spectrumPanel, g_avmag, MODEM_STATS_NSPEC*((float)MAX_F_HZ/MODEM_STATS_MAX_F_HZ)); - m_panelSpectrum->SetToolTip(_("Double-click to tune")); + m_panelSpectrum->SetToolTip(_("Double click to tune, middle click to re-center")); spectrumPanelSizer->Add(m_panelSpectrum, 0, wxALL | wxEXPAND, 5); // Spectrum plot control interface From 5b7671d2a867ac5ef5136ada6dbfc51a7bd013f2 Mon Sep 17 00:00:00 2001 From: Mooneer Salem Date: Sat, 31 Aug 2024 09:33:34 -0700 Subject: [PATCH 2/2] Add PR #743 to changelog. --- USER_MANUAL.md | 1 + 1 file changed, 1 insertion(+) diff --git a/USER_MANUAL.md b/USER_MANUAL.md index 005c16e9..82a55109 100644 --- a/USER_MANUAL.md +++ b/USER_MANUAL.md @@ -899,6 +899,7 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes * Add monitor volume adjustment. (PR #733) * Avoid modifying the audio device configuration without the user explicitly doing so. (PR #735) * If provided by user, add config file to titlebar. (PR #738) + * Minor adjustments to spectrum/waterfall tooltips. (PR #743) 3. Build system: * Allow overrriding the version tag when building. (PR #727) * Update wxWidgets to 3.2.5. (PR #731)