Run rustfmt

This commit is contained in:
Paul van Tilburg 2018-08-24 21:20:52 +02:00
parent 056e1c388b
commit 83ec82ec54
2 changed files with 13 additions and 10 deletions

View File

@ -57,7 +57,8 @@ fn load_albums(ui: &mut Cursive) {
let cb = ui.cb_sink().clone(); let cb = ui.cb_sink().clone();
ui.add_layer( ui.add_layer(
Dialog::around(ProgressBar::new() Dialog::around(
ProgressBar::new()
.range(0, registry.albums_list.len()) .range(0, registry.albums_list.len())
.with_task(move |counter| { .with_task(move |counter| {
let mut registry = REGISTRY.lock().unwrap(); let mut registry = REGISTRY.lock().unwrap();
@ -67,7 +68,8 @@ fn load_albums(ui: &mut Cursive) {
} else { } else {
cb.send(Box::new(select_albums)); cb.send(Box::new(select_albums));
} }
})).title("Loading list of albums…"), }),
).title("Loading list of albums…"),
); );
} }
@ -120,7 +122,8 @@ fn select_albums(ui: &mut Cursive) {
} }
list_view.add_child(album_name(album_path), checkbox); list_view.add_child(album_name(album_path), checkbox);
} }
}).scrollable(); })
.scrollable();
ui.pop_layer(); ui.pop_layer();
ui.add_layer( ui.add_layer(
@ -141,8 +144,7 @@ fn save_albums(ui: &mut Cursive) {
ui.pop_layer(); ui.pop_layer();
ui.add_layer( ui.add_layer(
Dialog::around(TextView::new("All albums have been saved!")) Dialog::around(TextView::new("All albums have been saved!")).button("Ok", |ui| ui.quit()),
.button("Ok", |ui| ui.quit())
); );
} }

View File

@ -23,7 +23,8 @@ impl Registry {
.max_depth(2); .max_depth(2);
let dir_filter = |entry: &DirEntry| { let dir_filter = |entry: &DirEntry| {
// The entry should be a directory and its name should not start with "extra" // The entry should be a directory and its name should not start with "extra"
entry.metadata().map(|e| e.is_dir()).unwrap_or(false) && !entry entry.metadata().map(|e| e.is_dir()).unwrap_or(false)
&& !entry
.file_name() .file_name()
.to_str() .to_str()
.map(|s| s.starts_with("extra")) .map(|s| s.starts_with("extra"))