|
|
@ -570,6 +570,10 @@ Item{
|
|
|
|
SequentialAnimation{
|
|
|
|
SequentialAnimation{
|
|
|
|
id: slidingAnimationAutoHiddenIn
|
|
|
|
id: slidingAnimationAutoHiddenIn
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PauseAnimation{
|
|
|
|
|
|
|
|
duration: manager.inTempHiding && root.durationTime>0 ? 500 : 0
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PropertyAnimation {
|
|
|
|
PropertyAnimation {
|
|
|
|
target: layoutsContainer
|
|
|
|
target: layoutsContainer
|
|
|
|
property: root.isVertical ? "x" : "y"
|
|
|
|
property: root.isVertical ? "x" : "y"
|
|
|
@ -593,7 +597,14 @@ Item{
|
|
|
|
|
|
|
|
|
|
|
|
onStopped: {
|
|
|
|
onStopped: {
|
|
|
|
inSlidingIn = false;
|
|
|
|
inSlidingIn = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (manager.inTempHiding) {
|
|
|
|
|
|
|
|
manager.inTempHiding = false;
|
|
|
|
|
|
|
|
updateAutomaticIconSize();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
manager.inTempHiding = false;
|
|
|
|
manager.inTempHiding = false;
|
|
|
|
|
|
|
|
updateAutomaticIconSize();
|
|
|
|
|
|
|
|
|
|
|
|
if (manager.debugMagager) {
|
|
|
|
if (manager.debugMagager) {
|
|
|
|
console.log("showing animation ended...");
|
|
|
|
console.log("showing animation ended...");
|
|
|
|