summary refs log tree commit diff
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2022-04-19 23:42:47 -0400
committerLoren Burkholder <computersemiexpert@outlook.com>2022-04-23 18:46:30 -0400
commit3d60fadb3998f73790d88438f3e741a97813f3bc (patch)
tree551795eaa6339ff81c32aa6f0111fb88963426e8
parentFix filtering without using regex (diff)
downloadnheko-3d60fadb3998f73790d88438f3e741a97813f3bc.tar.xz
Allow users to see through the spinner
-rw-r--r--resources/qml/TimelineView.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml

index 3f439439..e72e79ce 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml
@@ -46,6 +46,15 @@ Item { // height is somewhat arbitrary here... don't set width because width scales w/ height height: parent.height / 16 z: 3 + opacity: hh.hovered ? 0.3 : 1 + + Behavior on opacity { + NumberAnimation { duration: 100; } + } + + HoverHandler { + id: hh + } } ColumnLayout {