[ui] GraphEditor: change node background color

This commit is contained in:
Fabien Castan 2019-09-12 13:00:14 +02:00 committed by Yann Lanthony
parent 72e0e64e27
commit 65c472fe50
No known key found for this signature in database
GPG key ID: 519FAE6DF7A70642

View file

@ -77,7 +77,7 @@ Item {
id: background
anchors.fill: parent
color: activePalette.base
color: Qt.lighter(activePalette.base, 1.3)
layer.enabled: true
layer.effect: DropShadow { radius: 3; color: shadowColor }
radius: 3
@ -270,7 +270,7 @@ Item {
id: innerRect
width: parent.width - 6
height: parent.height
color: Colors.sysPalette.window
color: background.color
anchors.horizontalCenter: parent.horizontalCenter
}