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
a0f9a4d9
Commit
a0f9a4d9
authored
Apr 19, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(ui/views/App/Calls/Incall): hide stats when call is ended
parent
70c26565
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
CallModel.cpp
linphone-desktop/src/components/call/CallModel.cpp
+3
-2
Incall.js
linphone-desktop/ui/views/App/Calls/Incall.js
+1
-0
Incall.qml
linphone-desktop/ui/views/App/Calls/Incall.qml
+0
-1
No files found.
linphone-desktop/src/components/call/CallModel.cpp
View file @
a0f9a4d9
...
...
@@ -456,8 +456,9 @@ void CallModel::updateStats (const linphone::CallStats &callStats, QVariantList
stats
.
clear
();
stats
<<
createStat
(
tr
(
"callStatsCodec"
),
payloadType
?
QString
(
"%1 / %2kHz"
)
.
arg
(
Utils
::
linphoneStringToQString
(
payloadType
->
getMimeType
())).
arg
(
payloadType
->
getClockRate
()
/
1000
)
:
""
);
stats
<<
createStat
(
tr
(
"callStatsCodec"
),
payloadType
?
QString
(
"%1 / %2kHz"
).
arg
(
Utils
::
linphoneStringToQString
(
payloadType
->
getMimeType
())).
arg
(
payloadType
->
getClockRate
()
/
1000
)
:
""
);
stats
<<
createStat
(
tr
(
"callStatsUploadBandwidth"
),
QString
(
"%1 kbits/s"
).
arg
(
int
(
callStats
.
getUploadBandwidth
())));
stats
<<
createStat
(
tr
(
"callStatsDownloadBandwidth"
),
QString
(
"%1 kbits/s"
).
arg
(
int
(
callStats
.
getDownloadBandwidth
())));
stats
<<
createStat
(
tr
(
"callStatsIceState"
),
iceStateToString
(
callStats
.
getIceState
()));
...
...
linphone-desktop/ui/views/App/Calls/Incall.js
View file @
a0f9a4d9
...
...
@@ -24,6 +24,7 @@ function handleStatusChanged (status) {
}
telKeypad
.
visible
=
false
callStatistics
.
hideMenu
()
}
}
...
...
linphone-desktop/ui/views/App/Calls/Incall.qml
View file @
a0f9a4d9
...
...
@@ -90,7 +90,6 @@ Rectangle {
width
:
container
.
width
launcher
:
callQuality
relativeTo
:
callQuality
relativeY
:
CallStyle
.
header
.
stats
.
relativeY
}
...
...
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