From 5e3d3fc06ba418a4cdd54a6a36f7fab714cf1af2 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Mon, 10 Aug 2015 10:03:53 -0700 Subject: [PATCH] fix for indentation in BandwidthDialog --- interface/src/ui/BandwidthDialog.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/interface/src/ui/BandwidthDialog.cpp b/interface/src/ui/BandwidthDialog.cpp index 6272ddf76a..e086005783 100644 --- a/interface/src/ui/BandwidthDialog.cpp +++ b/interface/src/ui/BandwidthDialog.cpp @@ -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);