Skip to content

Commit b94be97

Browse files
committed
format
1 parent 11fe980 commit b94be97

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ use std::collections::HashMap;
33

44
use crate::app::apps::{App, AppCommand, ICNS_ICON};
55
use crate::commands::Function;
6-
use crate::debounce::DebouncePolicy;
76
use crate::config::Config;
7+
use crate::debounce::DebouncePolicy;
88
use crate::utils::icns_data_to_handle;
99
use crate::{app::tile::ExtSender, clipboard::ClipBoardContentType};
1010
use iced::time::Duration;

src/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pub struct Config {
3030
pub aliases: HashMap<String, String>,
3131
pub search_dirs: Vec<String>,
3232
pub log_path: String,
33-
pub debounce_delay: u64
33+
pub debounce_delay: u64,
3434
}
3535

3636
impl Default for Config {
@@ -54,7 +54,7 @@ impl Default for Config {
5454
modes: HashMap::new(),
5555
aliases: HashMap::new(),
5656
shells: vec![],
57-
debounce_delay: 300
57+
debounce_delay: 300,
5858
}
5959
}
6060
}

0 commit comments

Comments
 (0)