summary refs log tree commit diff
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2023-03-01 10:49:17 -0500
committerLoren Burkholder <computersemiexpert@outlook.com>2023-03-01 10:49:17 -0500
commit3245b119be5ff577e8ffc387f5e1acfe3317336b (patch)
tree2e1f5e097c27d14f1291154601e77730f1c8ff1c
parentMake emoji larger in the timeline by default (diff)
downloadnheko-3245b119be5ff577e8ffc387f5e1acfe3317336b.tar.xz
Make switches respect accent color
-rw-r--r--resources/qml/ToggleButton.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/ToggleButton.qml b/resources/qml/ToggleButton.qml

index b7adf21f..20e82ad6 100644 --- a/resources/qml/ToggleButton.qml +++ b/resources/qml/ToggleButton.qml
@@ -25,7 +25,7 @@ Switch { width: parent.width - height x: radius y: parent.height / 2 - height / 2 - color: toggleButton.checked ? "skyblue" : "grey" + color: toggleButton.checked ? Nheko.colors.highlight : "grey" border.color: "#cccccc" }