mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-06-06 13:53:54 +02:00
fix(core/dialog): reconstruct path using appropriate separator (#820)
* fix(core/dialog): reconstruct path using appropriate separator ref: tauri-apps/tauri#8074 * Reference original issue [skip ci]
This commit is contained in:
@@ -71,6 +71,8 @@ fn set_default_path<R: Runtime>(
|
||||
mut dialog_builder: FileDialogBuilder<R>,
|
||||
default_path: PathBuf,
|
||||
) -> FileDialogBuilder<R> {
|
||||
// we need to adjust the separator on Windows: https://github.com/tauri-apps/tauri/issues/8074
|
||||
let default_path: PathBuf = default_path.components().collect();
|
||||
if default_path.is_file() || !default_path.exists() {
|
||||
if let (Some(parent), Some(file_name)) = (default_path.parent(), default_path.file_name()) {
|
||||
if parent.components().count() > 0 {
|
||||
|
||||
Reference in New Issue
Block a user