Fix shaders path

This commit is contained in:
LemmyCook 2025-08-22 14:31:44 -04:00
parent 111959e66c
commit 377ed4a627
2 changed files with 2 additions and 2 deletions

View file

@ -45,7 +45,7 @@ Rectangle {
} }
property real imageOpacity: root.opacity property real imageOpacity: root.opacity
fragmentShader: "file:Shaders/qsb/circled_image.frag.qsb" fragmentShader: Qt.resolvedUrl("../Shaders/qsb/circled_image.frag.qsb")
supportsAtlasTextures: false supportsAtlasTextures: false
blending: true blending: true
} }

View file

@ -52,7 +52,7 @@ Rectangle {
property real itemHeight: root.height property real itemHeight: root.height
property real cornerRadius: root.radius property real cornerRadius: root.radius
property real imageOpacity: root.opacity property real imageOpacity: root.opacity
fragmentShader: "file:Shaders/qsb/rounded_image.frag.qsb" fragmentShader: Qt.resolvedUrl("../Shaders/qsb/rounded_image.frag.qsb")
// Qt6 specific properties - ensure proper blending // Qt6 specific properties - ensure proper blending
supportsAtlasTextures: false supportsAtlasTextures: false