summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2024-01-22 18:16:00 +0100
committerSebastian Thiel <sebastian.thiel@icloud.com>2024-01-22 18:16:00 +0100
commit600bee234edd4e7922017c26927a6f135a02c335 (patch)
tree9122d4480d1430470eb9cc59d11383064c9f03a6
parente512f31df3aeba1410df5e250dd74569a48fdf66 (diff)
Make builds with rustc 1.72 work (#226)
-rw-r--r--src/interactive/app/state.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interactive/app/state.rs b/src/interactive/app/state.rs
index 8762b93..159e63e 100644
--- a/src/interactive/app/state.rs
+++ b/src/interactive/app/state.rs
@@ -24,7 +24,7 @@ pub struct Cursor {
pub y: u16,
}
-pub(crate) struct FilesystemScan {
+pub struct FilesystemScan {
pub active_traversal: BackgroundTraversal,
/// The selected item prior to starting the traversal, if available, based on its name or index into [`AppState::entries`].
pub previous_selection: Option<(PathBuf, usize)>,