mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:44:11 +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 =
|
||||
new BandwidthChannelDisplay({NodeType::Unassigned}, form, "Other", "Kbps", 1.0, COLOR2);
|
||||
_allChannelDisplays[5] = _totalChannelDisplay =
|
||||
new BandwidthChannelDisplay({NodeType::DomainServer, NodeType::EntityServer,
|
||||
NodeType::AudioMixer, NodeType::Agent,
|
||||
NodeType::AvatarMixer, NodeType::Unassigned},
|
||||
form, "Total", "Kbps", 1.0, COLOR2);
|
||||
new BandwidthChannelDisplay({
|
||||
NodeType::DomainServer, NodeType::EntityServer,
|
||||
NodeType::AudioMixer, NodeType::Agent,
|
||||
NodeType::AvatarMixer, NodeType::Unassigned
|
||||
}, form, "Total", "Kbps", 1.0, COLOR2);
|
||||
|
||||
connect(averageUpdateTimer, SIGNAL(timeout()), this, SLOT(updateTimerTimeout()));
|
||||
averageUpdateTimer->start(1000);
|
||||
|
|
Loading…
Reference in a new issue