Ver Fonte

disable preview

tuanchris há 4 meses atrás
pai
commit
dadc79f81c

+ 1 - 1
dune-weaver-touch/qml/components/ModernPatternCard.qml

@@ -4,7 +4,7 @@ import QtQuick.Effects
 
 
 Rectangle {
 Rectangle {
     property string name: ""
     property string name: ""
-    property alias preview: previewImage.source
+    property string preview: "" // Disabled property alias to prevent WebP loading
     
     
     // Clean up the pattern name for display
     // Clean up the pattern name for display
     property string cleanName: {
     property string cleanName: {

+ 1 - 1
dune-weaver-touch/qml/components/PatternCard.qml

@@ -3,7 +3,7 @@ import QtQuick.Controls 2.15
 
 
 Rectangle {
 Rectangle {
     property alias name: nameLabel.text
     property alias name: nameLabel.text
-    property alias preview: previewImage.source
+    property string preview: "" // Disabled property alias to prevent WebP loading
     
     
     signal clicked()
     signal clicked()