mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 23:17:02 +02:00
removing description - hassle-free fix
This commit is contained in:
parent
9a0807ee0e
commit
5cf6b57f7f
1 changed files with 8 additions and 4 deletions
|
@ -40,7 +40,8 @@ Column {
|
||||||
|
|
||||||
Section {
|
Section {
|
||||||
label: "Latency"
|
label: "Latency"
|
||||||
description: "Audio pipeline latency, broken out and summed"
|
// description: "Audio pipeline latency, broken out and summed"
|
||||||
|
description: label
|
||||||
control: ColumnLayout {
|
control: ColumnLayout {
|
||||||
MovingValue { label: "Input Read"; source: AudioStats.inputReadMsMax; showGraphs: stats.showGraphs }
|
MovingValue { label: "Input Read"; source: AudioStats.inputReadMsMax; showGraphs: stats.showGraphs }
|
||||||
MovingValue { label: "Input Ring"; source: AudioStats.inputUnplayedMsMax; showGraphs: stats.showGraphs }
|
MovingValue { label: "Input Ring"; source: AudioStats.inputUnplayedMsMax; showGraphs: stats.showGraphs }
|
||||||
|
@ -62,7 +63,8 @@ Column {
|
||||||
|
|
||||||
Section {
|
Section {
|
||||||
label: "Upstream Jitter"
|
label: "Upstream Jitter"
|
||||||
description: "Timegaps in packets sent to the mixer"
|
// description: "Timegaps in packets sent to the mixer"
|
||||||
|
description: label
|
||||||
control: Jitter {
|
control: Jitter {
|
||||||
max: AudioStats.sentTimegapMsMaxWindow
|
max: AudioStats.sentTimegapMsMaxWindow
|
||||||
avg: AudioStats.sentTimegapMsAvgWindow
|
avg: AudioStats.sentTimegapMsAvgWindow
|
||||||
|
@ -76,13 +78,15 @@ Column {
|
||||||
|
|
||||||
Section {
|
Section {
|
||||||
label: "Mixer (upstream)"
|
label: "Mixer (upstream)"
|
||||||
description: "This client's remote audio stream, as seen by the server's mixer"
|
// description: "This client's remote audio stream, as seen by the server's mixer"
|
||||||
|
description: label
|
||||||
control: Stream { stream: AudioStats.mixerStream; showGraphs: stats.showGraphs }
|
control: Stream { stream: AudioStats.mixerStream; showGraphs: stats.showGraphs }
|
||||||
}
|
}
|
||||||
|
|
||||||
Section {
|
Section {
|
||||||
label: "Client (downstream)"
|
label: "Client (downstream)"
|
||||||
description: "This client's received audio stream, between the network and the OS"
|
// description: "This client's received audio stream, between the network and the OS"
|
||||||
|
description: label
|
||||||
control: Stream { stream: AudioStats.clientStream; showGraphs: stats.showGraphs }
|
control: Stream { stream: AudioStats.clientStream; showGraphs: stats.showGraphs }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue