Skip to content

Commit

Permalink
Fixed typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
guylamar2006 authored Nov 7, 2024
1 parent 3bc7b00 commit 127d530
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ui/uiapp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -60,7 +60,7 @@ pub struct MyEguiApp {
pub(crate) status_reciever: Receiver<SyncProgress>,
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<u32, String>,
pub(crate) current_edit: Option<u32>,
pub(crate) platforms: Platforms,
Expand All @@ -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,
Expand Down

0 comments on commit 127d530

Please sign in to comment.