From ab972cc90ab85f883886a2293de88dca849e8a7e Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Wed, 22 Apr 2015 23:08:43 -0400 Subject: [PATCH] Add note to dialog based PPM setting --- src/AppFrame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AppFrame.cpp b/src/AppFrame.cpp index cd64321..be63f76 100644 --- a/src/AppFrame.cpp +++ b/src/AppFrame.cpp @@ -320,7 +320,7 @@ void AppFrame::OnMenu(wxCommandEvent& event) { wxGetApp().setOffset(ofs); } } else if (event.GetId() == wxID_SET_PPM) { - long ofs = wxGetNumberFromUser("Frequency correction for device in PPM.\ni.e. -51 for -51 PPM", "Parts per million (PPM)", + long ofs = wxGetNumberFromUser("Frequency correction for device in PPM.\ni.e. -51 for -51 PPM\n\nNote: you can adjust PPM interactively\nby holding ALT over the frequency tuning bar.\n", "Parts per million (PPM)", "Frequency Correction", wxGetApp().getPPM(), -1000, 1000, this); wxGetApp().setPPM(ofs); wxGetApp().saveConfig();