Skip to content
Snippets Groups Projects
Commit 46511f33 authored by Josh Siegle's avatar Josh Siegle
Browse files

Reduce width of AUDIO OUT label in RHD2000Editor

parent 98a378dd
Branches
Tags
No related merge requests found
......@@ -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();
}
......
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment