From 127d530c19caf00ac17c9bc97b77bd9d2298a8d4 Mon Sep 17 00:00:00 2001 From: guylamar2006 Date: Thu, 7 Nov 2024 15:02:04 -0600 Subject: [PATCH] Fixed typos. --- src/ui/uiapp.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/uiapp.rs b/src/ui/uiapp.rs index 5f777ca..3e21a67 100644 --- a/src/ui/uiapp.rs +++ b/src/ui/uiapp.rs @@ -24,7 +24,7 @@ use super::{ }, ui_images::get_logo_icon, ui_import_games::FetcStatus, - BackupState, DiconnectState, + BackupState, DisconnectState, }; const SECTION_SPACING: f32 = 25.0; @@ -60,7 +60,7 @@ pub struct MyEguiApp { pub(crate) status_reciever: Receiver, pub(crate) image_selected_state: ImageSelectState, pub(crate) backup_state: BackupState, - pub(crate) disconect_state: DiconnectState, + pub(crate) disconnect_state: DisconnectState, pub(crate) rename_map: HashMap, pub(crate) current_edit: Option, pub(crate) platforms: Platforms, @@ -80,7 +80,7 @@ impl MyEguiApp { status_reciever: watch::channel(SyncProgress::NotStarted).1, image_selected_state: ImageSelectState::default(), backup_state: BackupState::default(), - disconect_state: DiconnectState::default(), + disconnect_state: DisconnectState::default(), rename_map: get_rename_map(), current_edit: Option::None, platforms,