QmlDesigner: Fix buttons in expression editor

We were using the wrong icons.

Change-Id: Idadba6947b3b44291f08977a2663ea9864e7eb33
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Thomas Hartmann
2016-09-02 11:24:21 +02:00
parent 1df58005b5
commit 071439f8b7

View File

@@ -206,7 +206,7 @@ Item {
Image { Image {
width: 16 width: 16
height: 16 height: 16
source: "image://icons/error" source: "image://icons/ok"
opacity: { opacity: {
if (control.pressed) if (control.pressed)
return 0.8; return 0.8;
@@ -235,7 +235,7 @@ Item {
Image { Image {
width: 16 width: 16
height: 16 height: 16
source: "image://icons/ok" source: "image://icons/error"
opacity: { opacity: {
if (control.pressed) if (control.pressed)
return 0.8; return 0.8;