From 86101db179142fba5e3b1780e303d67a2bb175d2 Mon Sep 17 00:00:00 2001 From: uncor3 Date: Mon, 8 Jun 2026 20:59:36 +0000 Subject: [PATCH] fix: icon.source --- src/ui/FileExplorer.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/FileExplorer.qml b/src/ui/FileExplorer.qml index 146aa9c..bcc4d27 100644 --- a/src/ui/FileExplorer.qml +++ b/src/ui/FileExplorer.qml @@ -257,7 +257,7 @@ Item { anchors.fill: parent Button { anchors.fill: parent - icon.source: "qrc:/resources/icons/material-symbols_arrow-left-alt.png" + icon.source: "qrc:/resources/icons/material-symbols_arrow-left-alt.svg" // FIXME:theming opacity: backBtn.enabled ? 1.0 : 0.7 } @@ -325,7 +325,7 @@ Item { anchors.fill: parent Button { anchors.fill: parent - icon.source: "qrc:/resources/icons/material-symbols_arrow-upward-rounded.png" + icon.source: "qrc:/resources/icons/material-symbols_arrow-upward-rounded.svg" // FIXME:theming opacity: upBtn.enabled ? 1.0 : 0.7 }