Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
linphone-desktop
Commits
e9db2d56
Commit
e9db2d56
authored
Feb 20, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(ui/modules/Common/Popup): remove animation
parent
8ddefd6e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
56 deletions
+6
-56
AbstractDropDownMenu.qml
...-desktop/ui/modules/Common/Popup/AbstractDropDownMenu.qml
+4
-33
DesktopPopup.qml
linphone-desktop/ui/modules/Common/Popup/DesktopPopup.qml
+2
-18
PopupStyle.qml
...one-desktop/ui/modules/Common/Styles/Popup/PopupStyle.qml
+0
-5
No files found.
linphone-desktop/ui/modules/Common/Popup/AbstractDropDownMenu.qml
View file @
e9db2d56
...
...
@@ -135,47 +135,18 @@ Item {
menuOpened
()
}
}
NumberAnimation
{
duration
:
PopupStyle
.
animation
.
openingDuration
easing.type
:
Easing
.
InOutQuad
property
:
'
opacity
'
target
:
menu
}
NumberAnimation
{
duration
:
PopupStyle
.
animation
.
openingDuration
easing.type
:
Easing
.
InOutQuad
property
:
'
implicitHeight
'
target
:
menu
}
},
Transition
{
from
:
'
opened
'
to
:
''
NumberAnimation
{
duration
:
PopupStyle
.
animation
.
closingDuration
easing.type
:
Easing
.
InOutQuad
property
:
'
implicitHeight
'
target
:
menu
}
SequentialAnimation
{
ScriptAction
{
script
:
menuClosed
()
}
NumberAnimation
{
duration
:
PopupStyle
.
animation
.
closingDuration
easing.type
:
Easing
.
InOutQuad
property
:
'
opacity
'
target
:
menu
}
ScriptAction
{
script
:
visible
=
false
script
:
{
menuClosed
()
visible
=
false
}
}
}
}
...
...
linphone-desktop/ui/modules/Common/Popup/DesktopPopup.qml
View file @
e9db2d56
...
...
@@ -85,30 +85,14 @@ Item {
}
}
}
NumberAnimation
{
duration
:
PopupStyle
.
animation
.
openingDuration
easing.type
:
Easing
.
InOutQuad
property
:
'
opacity
'
target
:
popup
}
},
Transition
{
from
:
'
opened
'
to
:
''
SequentialAnimation
{
NumberAnimation
{
duration
:
PopupStyle
.
animation
.
closingDuration
easing.type
:
Easing
.
InOutQuad
property
:
'
opacity
'
target
:
popup
}
ScriptAction
{
script
:
popup
.
showMinimized
()
}
ScriptAction
{
script
:
popup
.
showMinimized
()
}
}
]
...
...
linphone-desktop/ui/modules/Common/Styles/Popup/PopupStyle.qml
View file @
e9db2d56
...
...
@@ -8,11 +8,6 @@ import Common 1.0
QtObject
{
property
color
backgroundColor
:
Colors
.
k
property
QtObject
animation
:
QtObject
{
property
int
openingDuration
:
250
property
int
closingDuration
:
250
}
property
QtObject
shadow
:
QtObject
{
property
color
color
:
Colors
.
l
property
int
horizontalOffset
:
2
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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