Allow users to see through the spinner

This commit is contained in:
Loren Burkholder 2022-04-19 23:42:47 -04:00
parent b30211f43c
commit 8436b5c498
1 changed files with 9 additions and 0 deletions

View File

@ -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 {