2BBEMNZKZWXHEISLT25PGIAIGQSJPWSL7ZV25T7E2KMBLAOUPORQC }fn title(state: &State, _: window::Id) -> String {const APP: &str = "Inflorescence";match &state.model.sub {model::SubState::PickingProject(_)| model::SubState::PickingRepoDir(_) => {format!("{APP}: project picker")}model::SubState::ManagingRepo(managing_repo) => {format!("{APP}: {}",managing_repo.repo_path.file_name().map(|name| name.to_string_lossy()).unwrap_or_else(|| managing_repo.repo_path.to_string_lossy()))}}