We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac0bd4a commit e599269Copy full SHA for e599269
meshroom/ui/qml/main.qml
@@ -509,21 +509,19 @@ ApplicationWindow {
509
}
510
511
// plugin installation from path or url
512
- FileDialog {
+ Platform.FolderDialog {
513
id: intallPluginDialog
514
+ options: Platform.FolderDialog.DontUseNativeDialog
515
title: "Install Plugin"
- selectExisting: false
516
- selectFolder: true
517
onAccepted: {
518
- if (_reconstruction.installPlugin(intallPluginDialog.fileUrl)) {
+ if (_reconstruction.installPlugin(currentFolder.toString())) {
519
pluginInstalledDialog.open()
520
} else {
521
pluginNotInstalledDialog.open()
522
523
524
525
526
-
527
// Check if document has been saved
528
function ensureSaved(callback)
529
{
0 commit comments