Skip to content

Commit

Permalink
Adjust waterfall/spectrum tooltip based on issue #741.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiw committed Aug 31, 2024
1 parent 9ecbcb0 commit 02acf37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 02acf37

Please sign in to comment.