Fixed colour scheming and changed to a reload icon

This commit is contained in:
Cain Kilgore 2017-07-13 22:40:37 +01:00
parent 60300f5d7b
commit d74c834f12

View file

@ -68,6 +68,7 @@ Preference {
right: spinner.left right: spinner.left
rightMargin: 10 rightMargin: 10
} }
colorScheme: hifi.colorSchemes.dark
} }
SpinBox { SpinBox {
id: spinner id: spinner
@ -85,7 +86,7 @@ Preference {
} }
colorScheme: hifi.colorSchemes.dark colorScheme: hifi.colorSchemes.dark
} }
Button { GlyphButton {
id: button id: button
onClicked: { onClicked: {
if(spinner.maximumValue >= 1) { if(spinner.maximumValue >= 1) {
@ -96,12 +97,12 @@ Preference {
slider.value = spinner.maximumValue slider.value = spinner.maximumValue
} }
} }
width: 50 width: 30
font.family: hiFiGlyphs.name glyph: hifi.glyphs.reload
text: "a"
anchors { anchors {
right: parent.right right: parent.right
} }
colorScheme: hifi.colorSchemes.dark
} }
} }
} }