72b5954ce3
- Remove Python.loadingAccounts/willLoadAccounts - Fix HPage SwipeView bug that caused its inner SidePane to steal focus - Use overshoot for animation - Get rid of sidepane flickering - Set default HNumberAnimation easing.type to OutQuad, specify InOutQuad for HCheckBox
11 lines
281 B
QML
11 lines
281 B
QML
import QtQuick 2.12
|
|
|
|
NumberAnimation {
|
|
property real factor: 1.0
|
|
property real overshoot: 1.0
|
|
|
|
duration: theme.animationDuration * Math.max(overshoot / 1.7, 1.0) * factor
|
|
easing.type: overshoot > 1 ? Easing.OutBack : Easing.Linear
|
|
easing.overshoot: overshoot
|
|
}
|