Fix output file config in recon (#1319)

This commit is contained in:
Kyle Reed 2023-07-28 22:16:49 -07:00 committed by GitHub
parent f24523c2f1
commit 5ca74db2f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,10 +69,11 @@ ReconSetupViewMain::ReconSetupViewMain(NavigationView& nav, Rect parent_rect, st
button_save_freqs.on_select = [this, &nav](Button&) { button_save_freqs.on_select = [this, &nav](Button&) {
auto open_view = nav.push<FileLoadView>(".TXT"); auto open_view = nav.push<FileLoadView>(".TXT");
open_view->push_dir(freqman_dir);
open_view->on_changed = [this, &nav](std::filesystem::path new_file_path) { open_view->on_changed = [this, &nav](std::filesystem::path new_file_path) {
if (new_file_path.native().find(freqman_dir.native()) == 0) { if (new_file_path.native().find(freqman_dir.native()) == 0) {
_output_file = new_file_path.stem().string(); _output_file = new_file_path.stem().string();
text_input_file.set(_output_file); button_output_file.set_text(_output_file);
} else { } else {
nav.display_modal("LOAD ERROR", "A valid file from\nFREQMAN directory is\nrequired."); nav.display_modal("LOAD ERROR", "A valid file from\nFREQMAN directory is\nrequired.");
} }