From 04be26291183d0a43c85acd201138f6dc0e55404 Mon Sep 17 00:00:00 2001
From: Josh Siegle <jsiegle@mit.edu>
Date: Fri, 20 Sep 2013 17:28:37 +0200
Subject: [PATCH] Update layout of RecordControlEditor

---
 Source/Processors/Editors/RecordControlEditor.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Source/Processors/Editors/RecordControlEditor.cpp b/Source/Processors/Editors/RecordControlEditor.cpp
index c43770639..56aab0471 100644
--- a/Source/Processors/Editors/RecordControlEditor.cpp
+++ b/Source/Processors/Editors/RecordControlEditor.cpp
@@ -31,12 +31,12 @@ RecordControlEditor::RecordControlEditor(GenericProcessor* parentNode, bool useD
 {
     desiredWidth = 170;
 
-    channelSelector->eventsOnly = true;
+    //channelSelector->eventsOnly = true;
 
-    chanSel = new Label("Chanel Text","Available Event Channels");
+    chanSel = new Label("Chanel Text","Trigger Channel:");
     chanSel->setEditable(false);
     chanSel->setJustificationType(Justification::centredLeft);
-    chanSel->setBounds(20,30,120,20);
+    chanSel->setBounds(15,35,120,20);
 
     addAndMakeVisible(chanSel);
 
@@ -53,7 +53,7 @@ RecordControlEditor::RecordControlEditor(GenericProcessor* parentNode, bool useD
     
     newFileToggleButton = new UtilityButton("SPLIT FILES", Font("Small Text", 13, Font::plain));
     newFileToggleButton->setRadius(3.0f);
-    newFileToggleButton->setBounds(45, 95, 90, 18);
+    newFileToggleButton->setBounds(35, 95, 90, 18);
     newFileToggleButton->addListener(this);
     newFileToggleButton->setClickingTogglesState(true);
     addAndMakeVisible(newFileToggleButton);
-- 
GitLab