From 331b00d5d92991db5770d1da2b64c085a5e166d9 Mon Sep 17 00:00:00 2001 From: Angela Mazzurco Date: Sat, 22 Jul 2017 16:03:49 +0200 Subject: [PATCH] Set default color for buttons --- retroshare-qml-app/src/components/ButtonText.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/retroshare-qml-app/src/components/ButtonText.qml b/retroshare-qml-app/src/components/ButtonText.qml index 89655f7df..923ece16d 100644 --- a/retroshare-qml-app/src/components/ButtonText.qml +++ b/retroshare-qml-app/src/components/ButtonText.qml @@ -12,9 +12,9 @@ Item property var iconUrl property int iconHeight: 20 - property color color - property color hoverColor - property color pressColor + property color color: "lightsteelblue" + property color hoverColor: color + property color pressColor: color property int fontSize property int borderWidth property int borderRadius