mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-04-03 20:32:07 -04:00
settings: use Image in theme colors tab wp preview
This commit is contained in:
@@ -386,12 +386,22 @@ Item {
|
|||||||
radius: Theme.cornerRadius
|
radius: Theme.cornerRadius
|
||||||
color: Theme.surfaceVariant
|
color: Theme.surfaceVariant
|
||||||
|
|
||||||
CachingImage {
|
Image {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.margins: 1
|
anchors.margins: 1
|
||||||
imagePath: (Theme.wallpaperPath && !Theme.wallpaperPath.startsWith("#")) ? Theme.wallpaperPath : ""
|
source: {
|
||||||
|
var wp = Theme.wallpaperPath;
|
||||||
|
if (!wp || wp === "" || wp.startsWith("#"))
|
||||||
|
return "";
|
||||||
|
if (wp.startsWith("file://"))
|
||||||
|
wp = wp.substring(7);
|
||||||
|
return "file://" + wp.split('/').map(s => encodeURIComponent(s)).join('/');
|
||||||
|
}
|
||||||
fillMode: Image.PreserveAspectCrop
|
fillMode: Image.PreserveAspectCrop
|
||||||
visible: Theme.wallpaperPath && !Theme.wallpaperPath.startsWith("#")
|
visible: Theme.wallpaperPath && !Theme.wallpaperPath.startsWith("#")
|
||||||
|
sourceSize.width: 120
|
||||||
|
sourceSize.height: 120
|
||||||
|
asynchronous: true
|
||||||
layer.enabled: true
|
layer.enabled: true
|
||||||
layer.effect: MultiEffect {
|
layer.effect: MultiEffect {
|
||||||
maskEnabled: true
|
maskEnabled: true
|
||||||
|
|||||||
Reference in New Issue
Block a user