summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.qmake.conf2
-rw-r--r--src/effects/DropShadow.qml1
-rw-r--r--src/effects/Glow.qml1
-rw-r--r--sync.profile8
4 files changed, 7 insertions, 5 deletions
diff --git a/.qmake.conf b/.qmake.conf
index a5c6224..f5a422c 100644
--- a/.qmake.conf
+++ b/.qmake.conf
@@ -1,3 +1,3 @@
load(qt_build_config)
-MODULE_VERSION = 5.0.2
+MODULE_VERSION = 5.1.0
diff --git a/src/effects/DropShadow.qml b/src/effects/DropShadow.qml
index 538faf6..52cb409 100644
--- a/src/effects/DropShadow.qml
+++ b/src/effects/DropShadow.qml
@@ -391,6 +391,7 @@ Item {
SourceProxy {
id: sourceProxy
input: rootItem.source
+ sourceRect: rootItem.transparentBorder ? Qt.rect(-1, -1, parent.width + 2.0, parent.height + 2.0) : Qt.rect(0, 0, 0, 0)
}
ShaderEffect {
anchors.fill: parent
diff --git a/src/effects/Glow.qml b/src/effects/Glow.qml
index c95c846..024915b 100644
--- a/src/effects/Glow.qml
+++ b/src/effects/Glow.qml
@@ -295,6 +295,7 @@ Item {
SourceProxy {
id: sourceProxy
input: rootItem.source
+ sourceRect: rootItem.transparentBorder ? Qt.rect(-1, -1, parent.width + 2.0, parent.height + 2.0) : Qt.rect(0, 0, 0, 0)
}
ShaderEffect {
anchors.fill: parent
diff --git a/sync.profile b/sync.profile
index de58c6e..7791f3b 100644
--- a/sync.profile
+++ b/sync.profile
@@ -5,8 +5,8 @@
# - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
#
%dependencies = (
- "qtbase" => "refs/heads/release",
- "qtdeclarative" => "refs/heads/release",
- "qtjsbackend" => "refs/heads/release",
- "qtxmlpatterns" => "refs/heads/release",
+ "qtbase" => "refs/heads/stable",
+ "qtdeclarative" => "refs/heads/stable",
+ "qtjsbackend" => "refs/heads/stable",
+ "qtxmlpatterns" => "refs/heads/stable",
);