aboutsummaryrefslogtreecommitdiff
path: root/components/StandardButton.qml
diff options
context:
space:
mode:
authormarcin <z.krzysztoff7@gmail.com>2014-07-17 13:14:27 +0200
committermarcin <z.krzysztoff7@gmail.com>2014-07-17 13:14:27 +0200
commitc26e1376db5e10a02d8cd492188ba52390d4d66d (patch)
tree277905c1336be5349c0ee4e6647df620de4447d0 /components/StandardButton.qml
parent98c208280821f9cc76579218aa8266ce4f865d9f (diff)
downloadmonzero-gui-c26e1376db5e10a02d8cd492188ba52390d4d66d.tar.gz
monzero-gui-c26e1376db5e10a02d8cd492188ba52390d4d66d.tar.xz
monzero-gui-c26e1376db5e10a02d8cd492188ba52390d4d66d.zip
https://trello.com/c/MvCKKjjt/47-remove-radius-from-components
https://trello.com/c/9ux5ftqK/48-hide-hints-functionality
Diffstat (limited to 'components/StandardButton.qml')
-rw-r--r--components/StandardButton.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/StandardButton.qml b/components/StandardButton.qml
index 28bee9be..b7e452f5 100644
--- a/components/StandardButton.qml
+++ b/components/StandardButton.qml
@@ -16,7 +16,7 @@ Item {
anchors.right: parent.right
height: parent.height - 1
y: buttonArea.pressed ? 0 : 1
- radius: 4
+ //radius: 4
color: buttonArea.pressed ? parent.shadowPressedColor : parent.shadowReleasedColor
}
@@ -26,7 +26,7 @@ Item {
height: parent.height - 1
y: buttonArea.pressed ? 1 : 0
color: buttonArea.pressed ? parent.pressedColor : parent.releasedColor
- radius: 4
+ //radius: 4
}
Text {