summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--basicsuite/Graphical Effects/effect_Colorize.qml2
-rw-r--r--basicsuite/Graphical Effects/main.qml3
-rw-r--r--basicsuite/Photo Gallery/main.qml10
3 files changed, 13 insertions, 2 deletions
diff --git a/basicsuite/Graphical Effects/effect_Colorize.qml b/basicsuite/Graphical Effects/effect_Colorize.qml
index c2057ed..06c977e 100644
--- a/basicsuite/Graphical Effects/effect_Colorize.qml
+++ b/basicsuite/Graphical Effects/effect_Colorize.qml
@@ -29,6 +29,6 @@ Item {
scale: source.height > root.height * 0.8 ? root.height / source.height * 0.8 : 1;
hue: root.inputX * 2 - 1;
- saturation: root.inputY * 2 - 1
+ saturation: root.inputY
}
}
diff --git a/basicsuite/Graphical Effects/main.qml b/basicsuite/Graphical Effects/main.qml
index 2d63844..24778de 100644
--- a/basicsuite/Graphical Effects/main.qml
+++ b/basicsuite/Graphical Effects/main.qml
@@ -38,7 +38,8 @@ Item {
ListElement { name: "Hue / Saturation"; file: "effect_HueSaturation.qml" }
ListElement { name: "Opacity Mask"; file: "effect_OpacityMask.qml" }
ListElement { name: "Threshold Mask"; file: "effect_ThresholdMask.qml" }
- ListElement { name: "Custom"; file: "effect_CustomWave.qml" }
+ ListElement { name: "Wave (costom)"; file: "effect_CustomWave.qml" }
+ ListElement { name: "Dissolve (custom)"; file: "effect_CustomDissolve.qml" }
}
ListView
diff --git a/basicsuite/Photo Gallery/main.qml b/basicsuite/Photo Gallery/main.qml
index fa0e577..d82bd84 100644
--- a/basicsuite/Photo Gallery/main.qml
+++ b/basicsuite/Photo Gallery/main.qml
@@ -16,6 +16,16 @@ Item {
id: imageList
folder: "/data/images"
nameFilters: ["*.png", "*.jpg"]
+
+ showDirs: false
+ }
+
+ Text {
+ id: noImages
+ color: "white"
+ visible: grid.count == 0
+ text: "No images in " + imageList.folder
+ anchors.centerIn: parent
}
GridView {