From a92a3d321c9979ac43704c0c15fba8dea1b3d1a8 Mon Sep 17 00:00:00 2001 From: soupkitchenfilms <13426391+soupkitchenfilms@users.noreply.github.com> Date: Sun, 19 Jul 2026 18:34:13 +1000 Subject: [PATCH] FileSystemBrowser.qml: fix invalid '#' comment (QML requires //) A python-style '#' comment is a QML syntax error, which prevents the filesystem browser plugin's QML from loading. Signed-off-by: soupkitchenfilms <13426391+soupkitchenfilms@users.noreply.github.com> --- .../FileSystemBrowser/xstudio/FileSystemBrowser.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin/utility/filesystem_browser/FileSystemBrowser/xstudio/FileSystemBrowser.qml b/src/plugin/utility/filesystem_browser/FileSystemBrowser/xstudio/FileSystemBrowser.qml index 3dfeb190d..226fc5112 100644 --- a/src/plugin/utility/filesystem_browser/FileSystemBrowser/xstudio/FileSystemBrowser.qml +++ b/src/plugin/utility/filesystem_browser/FileSystemBrowser/xstudio/FileSystemBrowser.qml @@ -31,7 +31,7 @@ Item { property var previewing: previewMediaUuid != helpers.QVariantFromUuidString("") ? previewMediaUuid == currentPlayhead.mediaUuid : false - # uri requires triple slash before drive letter on Windows, since this is the root. + // uri requires triple slash before drive letter on Windows, since this is the root. property var thumbSrcRoot: Qt.platform.os === "windows" ? "image://thumbnail/file:///" : "image://thumbnail/file://" FileSystemBrowserScanResultsModel {