diff --git a/meshroom/ui/qml/GraphEditor/GraphEditor.qml b/meshroom/ui/qml/GraphEditor/GraphEditor.qml index b9191634..1d9b160e 100755 --- a/meshroom/ui/qml/GraphEditor/GraphEditor.qml +++ b/meshroom/ui/qml/GraphEditor/GraphEditor.qml @@ -237,7 +237,9 @@ Item { } // Add a "Pipelines" category, filled with the list of templates to create pipelines from the menu - categories["Pipelines"] = MeshroomApp.pipelineTemplateNames + if (MeshroomApp.pipelineTemplateNames.length > 0) { + categories["Pipelines"] = MeshroomApp.pipelineTemplateNames + } return categories }