Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
Plasma Mobile
Commits
06b02473
Commit
06b02473
authored
Apr 06, 2022
by
Devin Lin
🎨
Browse files
homescreen: Fix zoom animation when going from homescreen to switcher
parent
192d36da
Changes
1
Hide whitespace changes
Inline
Side-by-side
components/mobileshell/qml/homescreen/HomeScreen.qml
View file @
06b02473
...
...
@@ -189,13 +189,11 @@ Item {
if
(
visible
)
{
startupFeedback
.
visible
=
false
;
// only animate if going from homescreen
if
(
taskSwitcher
.
wasInActiveTask
)
{
itemContainer
.
zoomOut
();
}
else
{
itemContainer
.
zoomOut
();
//itemContainer.opacity = 0;
// hide immediately when going from homescreen
if
(
!
taskSwitcher
.
wasInActiveTask
)
{
itemContainer
.
opacity
=
0
;
}
itemContainer
.
zoomOut
();
}
else
{
itemContainer
.
zoomIn
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment