update filename

This commit is contained in:
ochibani 2024-12-26 18:52:25 +02:00
parent f63c08e04e
commit 2914365e05
No known key found for this signature in database
GPG Key ID: 2C6B61CE0C704ED4

View File

@ -692,32 +692,19 @@ fn build_ui(application: &Application, error_dialog: MessageDialog, error_messag
let audio_input_id = audio_source_combobox.active_id().unwrap().to_string(); let audio_input_id = audio_source_combobox.active_id().unwrap().to_string();
let audio_output_id = output_device; let audio_output_id = output_device;
let audio_record_bitrate = audio_bitrate_spin.value() as u16; let audio_record_bitrate = audio_bitrate_spin.value() as u16;
#[derive(Debug, Clone)] let filename = folder_chooser_native
struct FileName {
filename: (FileChooserNative, Entry, ComboBoxText),
}
let struct_filename = FileName {
filename: (
folder_chooser_native,
filename_entry,
format_chooser_combobox,
)
};
let filename = struct_filename
.filename
.0
.file() .file()
.unwrap() .unwrap()
.path() .path()
.unwrap() .unwrap()
.join(PathBuf::from(format!( .join(PathBuf::from(format!(
"{}.{}", "{}.{}",
if struct_filename.filename.1.text().to_string().trim().eq("") { if filename_entry.text().to_string().trim().eq("") {
Utc::now().to_string().replace(" UTC", "").replace(' ', "-") Utc::now().to_string().replace(" UTC", "").replace(' ', "-")
} else { } else {
struct_filename.filename.1.text().to_string().trim().to_string() filename_entry.text().to_string().trim().to_string()
}, },
struct_filename.filename.2.active_id().unwrap() format_chooser_combobox.active_id().unwrap()
))) )))
.as_path() .as_path()
.display().to_string(); .display().to_string();