From feeaf31e07c480e373789afeb36108332ef870e0 Mon Sep 17 00:00:00 2001 From: Salem Yaslem Date: Wed, 4 Dec 2024 22:25:14 +0300 Subject: [PATCH] default to 0 --- src/main.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index 2efbce7..efad93f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -150,7 +150,7 @@ pub fn build_ui(application: &Application) { format_chooser_combobox.append(Some("avi"), &get_bundle("avi-format", None)); format_chooser_combobox.append(Some("wmv"), &get_bundle("wmv-format", None)); format_chooser_combobox.append(Some("nut"), &get_bundle("nut-format", None)); - format_chooser_combobox.set_active(Some(config_management::get("default", "format").parse::().unwrap())); + format_chooser_combobox.set_active(Some(config_management::get("default", "format").parse::().unwrap_or(0u32))); // Get audio sources let input_device = host_audio_device.input_devices().unwrap(); @@ -348,12 +348,12 @@ pub fn build_ui(application: &Application) { ("frame-{}", &format_chooser_combobox.active().unwrap().to_string())) .parse::() - .unwrap(), + .unwrap_or(0f64), ); delay_spin.set_value( config_management::get("default", "delay") .parse::() - .unwrap(), + .unwrap_or(0f64), ); video_bitrate_spin.set_value( config_management::get("default", @@ -361,12 +361,12 @@ pub fn build_ui(application: &Application) { ("videobitrate-{}", &format_chooser_combobox.active().unwrap().to_string())) .parse::() - .unwrap(), + .unwrap_or(0f64), ); audio_bitrate_spin.set_value( config_management::get("default", "audiobitrate") .parse::() - .unwrap(), + .unwrap_or(0f64), ); let _format_chooser_combobox = format_chooser_combobox.clone();