From 8436b5c498e4037657688ec5b16249bc6df8d713 Mon Sep 17 00:00:00 2001 From: Loren Burkholder Date: Tue, 19 Apr 2022 23:42:47 -0400 Subject: [PATCH] Allow users to see through the spinner --- resources/qml/TimelineView.qml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml index a7bfe1ef..87e931df 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 {