Update breadcrumbs when root directory changes.

This commit is contained in:
2026-02-01 18:23:44 -05:00
parent a5bed9ed2c
commit 4cc43916cb
3 changed files with 35 additions and 39 deletions

View File

@@ -68,7 +68,12 @@ SplitView {
height: navigationView.height
// Path to the directory opened in the file explorer.
originalRootDirectory: root.projectDir
rootDirectory: root.projectDir
onRootDirectoryChanged: {
console.log(clideTreeView.rootDirectory)
breadCrumb.text = clideTreeView.rootDirectory
}
}
}
}