Allow users to see through the spinner

pull/1056/head
Loren Burkholder 3 years ago
parent eeb48749ae
commit 3d60fadb39
  1. 9
      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 {

Loading…
Cancel
Save