mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 21:23:24 +00:00
Sync with mobilecomponents 54e4f2622a
This fixes loading the icon. Signed-off-by: Sebastian Kügler <sebas@kde.org>
This commit is contained in:
parent
ffb2c6014e
commit
e0fc5268fe
1 changed files with 4 additions and 3 deletions
|
@ -19,6 +19,7 @@
|
|||
|
||||
import QtQuick 2.0
|
||||
import QtGraphicalEffects 1.0
|
||||
import org.kde.plasma.mobilecomponents 0.2
|
||||
|
||||
Item {
|
||||
id: root
|
||||
|
@ -26,13 +27,13 @@ Item {
|
|||
property alias smooth: image.smooth
|
||||
property bool active: false
|
||||
property bool valid: image.status == Image.Ready
|
||||
implicitWidth: image.sourceSize.width
|
||||
implicitHeight: image.sourceSize.height
|
||||
implicitWidth: Math.min(image.sourceSize.width, Units.iconSizes.medium)
|
||||
implicitHeight: Math.min(image.sourceSize.height, Units.iconSizes.medium)
|
||||
|
||||
Image {
|
||||
id: image
|
||||
anchors.fill: parent
|
||||
source: root.source != "" ? "icons/" + root.source + ".svg" : root.source
|
||||
source: root.source != "" ? (root.source.indexOf(".") === -1 ? "icons/" + root.source + ".svg" : root.source) : root.source
|
||||
}
|
||||
GammaAdjust {
|
||||
anchors.fill: image
|
||||
|
|
Loading…
Add table
Reference in a new issue