From 46511f333ab80e43afd3b0cc7a1010922c79daef Mon Sep 17 00:00:00 2001 From: Josh Siegle <jsiegle@mit.edu> Date: Thu, 3 Oct 2013 16:49:58 -0400 Subject: [PATCH] Reduce width of AUDIO OUT label in RHD2000Editor --- Source/Processors/Editors/ChannelSelector.cpp | 1 + Source/Processors/Editors/RHD2000Editor.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Processors/Editors/ChannelSelector.cpp b/Source/Processors/Editors/ChannelSelector.cpp index 6be916044..9866414f3 100755 --- a/Source/Processors/Editors/ChannelSelector.cpp +++ b/Source/Processors/Editors/ChannelSelector.cpp @@ -75,6 +75,7 @@ ChannelSelector::ChannelSelector(bool createButtons, Font& titleFont_) : channelSelectorRegion = new ChannelSelectorRegion(this); //channelSelectorRegion->setBounds(0,20,0,getHeight()-35); addAndMakeVisible(channelSelectorRegion); + channelSelectorRegion->toBack(); } diff --git a/Source/Processors/Editors/RHD2000Editor.cpp b/Source/Processors/Editors/RHD2000Editor.cpp index e8e36c993..5424d1612 100644 --- a/Source/Processors/Editors/RHD2000Editor.cpp +++ b/Source/Processors/Editors/RHD2000Editor.cpp @@ -86,7 +86,7 @@ RHD2000Editor::RHD2000Editor(GenericProcessor* parentNode, audioLabel = new Label("audio label", "Audio out"); - audioLabel->setBounds(180,25,180,15); + audioLabel->setBounds(180,25,75,15); audioLabel->setFont(Font("Small Text", 10, Font::plain)); audioLabel->setColour(Label::textColourId, Colours::darkgrey); addAndMakeVisible(audioLabel); -- GitLab