mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-23 22:58:15 +00:00
fix(app): little code style fixes
This commit is contained in:
parent
a4cfd66774
commit
cd1e29693a
3 changed files with 8 additions and 12 deletions
|
|
@ -57,16 +57,12 @@ Item {
|
|||
}
|
||||
|
||||
transitions: Transition {
|
||||
RotationAnimation {
|
||||
direction: RotationAnimation.Clockwise
|
||||
duration: CollapseStyle.animationDuration
|
||||
property: 'rotation'
|
||||
target: button
|
||||
}
|
||||
|
||||
SequentialAnimation {
|
||||
PauseAnimation {
|
||||
RotationAnimation {
|
||||
direction: RotationAnimation.Clockwise
|
||||
duration: CollapseStyle.animationDuration
|
||||
property: 'rotation'
|
||||
target: button
|
||||
}
|
||||
|
||||
ScriptAction {
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ import Common.Styles 1.0
|
|||
Rectangle {
|
||||
id: entry
|
||||
|
||||
property alias text: text.text
|
||||
property alias entryName: text.text
|
||||
|
||||
signal clicked
|
||||
|
||||
|
|
|
|||
|
|
@ -64,19 +64,19 @@ RowLayout {
|
|||
entryWidth: 120
|
||||
|
||||
ActionMenuEntry {
|
||||
text: qsTr('acceptAudioCall')
|
||||
entryName: qsTr('acceptAudioCall')
|
||||
|
||||
onClicked: menu.hideMenu()
|
||||
}
|
||||
|
||||
ActionMenuEntry {
|
||||
text: qsTr('acceptVideoCall')
|
||||
entryName: qsTr('acceptVideoCall')
|
||||
|
||||
onClicked: menu.hideMenu()
|
||||
}
|
||||
|
||||
ActionMenuEntry {
|
||||
text: qsTr('hangup')
|
||||
entryName: qsTr('hangup')
|
||||
|
||||
onClicked: menu.hideMenu()
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue