Merge pull request #729 from drowe67/ms-save-file-paths
Fix bug preventing saving of the previously used path when playing back files.pull/731/head
commit
743f7ee2fb
|
@ -891,9 +891,11 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes
|
|||
|
||||
## V1.9.9.3 TBD 2024
|
||||
|
||||
1. Enhancements:
|
||||
1. Bugfixes:
|
||||
* Fix bug preventing saving of the previously used path when playing back files. (PR #729)
|
||||
2. Enhancements:
|
||||
* Show green line indicating RX frequency. (PR #725)
|
||||
2. Build system:
|
||||
3. Build system:
|
||||
* Allow overrriding the version tag when building. (PR #727)
|
||||
|
||||
## V1.9.9.2 June 2024
|
||||
|
|
|
@ -142,6 +142,9 @@ void MainFrame::OnPlayFileFromRadio(wxCommandEvent& event)
|
|||
return;
|
||||
}
|
||||
|
||||
// Save path for future use
|
||||
wxGetApp().appConfiguration.playFileFromRadioPath = tmpString;
|
||||
|
||||
wxWindow * const ctrl = openFileDialog.GetExtraControl();
|
||||
|
||||
// Huh?! I just copied wxWidgets-2.9.4/samples/dialogs ....
|
||||
|
@ -306,6 +309,9 @@ void MainFrame::OnRecFileFromRadio(wxCommandEvent& event)
|
|||
return;
|
||||
}
|
||||
|
||||
// Save path for future use
|
||||
wxGetApp().appConfiguration.recFileFromRadioPath = tmpString;
|
||||
|
||||
SetStatusText(wxT("Recording file ") + fileName + wxT(" from radio") , 0);
|
||||
m_menuItemRecFileFromRadio->SetItemLabel(wxString(_("Stop Record File - From Radio...")));
|
||||
g_sfRecFileFromModulator = g_sfRecFile;
|
||||
|
|
Loading…
Reference in New Issue