mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 08:23:04 +02:00
fix for indentation in BandwidthDialog
This commit is contained in:
parent
9ac760aed6
commit
5e3d3fc06b
1 changed files with 5 additions and 4 deletions
|
@ -89,10 +89,11 @@ BandwidthDialog::BandwidthDialog(QWidget* parent) :
|
||||||
_allChannelDisplays[4] = _otherChannelDisplay =
|
_allChannelDisplays[4] = _otherChannelDisplay =
|
||||||
new BandwidthChannelDisplay({NodeType::Unassigned}, form, "Other", "Kbps", 1.0, COLOR2);
|
new BandwidthChannelDisplay({NodeType::Unassigned}, form, "Other", "Kbps", 1.0, COLOR2);
|
||||||
_allChannelDisplays[5] = _totalChannelDisplay =
|
_allChannelDisplays[5] = _totalChannelDisplay =
|
||||||
new BandwidthChannelDisplay({NodeType::DomainServer, NodeType::EntityServer,
|
new BandwidthChannelDisplay({
|
||||||
NodeType::AudioMixer, NodeType::Agent,
|
NodeType::DomainServer, NodeType::EntityServer,
|
||||||
NodeType::AvatarMixer, NodeType::Unassigned},
|
NodeType::AudioMixer, NodeType::Agent,
|
||||||
form, "Total", "Kbps", 1.0, COLOR2);
|
NodeType::AvatarMixer, NodeType::Unassigned
|
||||||
|
}, form, "Total", "Kbps", 1.0, COLOR2);
|
||||||
|
|
||||||
connect(averageUpdateTimer, SIGNAL(timeout()), this, SLOT(updateTimerTimeout()));
|
connect(averageUpdateTimer, SIGNAL(timeout()), this, SLOT(updateTimerTimeout()));
|
||||||
averageUpdateTimer->start(1000);
|
averageUpdateTimer->start(1000);
|
||||||
|
|
Loading…
Reference in a new issue