diff --git a/Source/Processors/Editors/AudioEditor.cpp b/Source/Processors/Editors/AudioEditor.cpp
index c66463b34626dfa325df1efeb166c53a96e065a0..31daa3c7194e91dbe9327287fef7de38f334ee3e 100755
--- a/Source/Processors/Editors/AudioEditor.cpp
+++ b/Source/Processors/Editors/AudioEditor.cpp
@@ -39,6 +39,8 @@ MuteButton::MuteButton()
               onimage, 1.0f, Colours::white.withAlpha(0.0f));
 
     setClickingTogglesState(true);
+
+    setTooltip("Mute audio");
 }
 
 MuteButton::~MuteButton()
@@ -103,6 +105,7 @@ AudioEditor::AudioEditor(AudioNode* owner)
     volumeSlider->addListener(this);
     volumeSlider->setTextBoxStyle(Slider::NoTextBox,
                                   false, 0, 0);
+    volumeSlider->setColour(Slider::trackColourId,Colours::yellow);
     addAndMakeVisible(volumeSlider);
 
     noiseGateSlider = new Slider("Noise Gate Slider");
@@ -125,10 +128,10 @@ AudioEditor::~AudioEditor()
 
 void AudioEditor::resized()
 {
-    muteButton->setBounds(0,0,30,25);
-    volumeSlider->setBounds(35,0,50,getHeight());
-    noiseGateSlider->setBounds(85,0,50,getHeight());
-    audioWindowButton->setBounds(140,0,200,getHeight());
+    muteButton->setBounds(0,5,30,25);
+    volumeSlider->setBounds(35,8,50,getHeight()-5);
+    noiseGateSlider->setBounds(85,8,50,getHeight()-5);
+    audioWindowButton->setBounds(140,5,200,getHeight());
 }
 
 bool AudioEditor::keyPressed(const KeyPress& key)
@@ -227,6 +230,10 @@ void AudioEditor::paint(Graphics& g)
 {
     //g.setColour(Colours::grey);
     // g.fillRect(1,1,getWidth()-2,getHeight()-2);
+    g.setColour(Colours::grey);
+    g.setFont(10);
+    g.drawText("VOLUME:",40,1,50,10,Justification::left,false);
+    g.drawText("GATE:",90,1,50,10,Justification::left,false);
 }
 
 
diff --git a/Source/UI/ControlPanel.cpp b/Source/UI/ControlPanel.cpp
index de5b76d37e15819a8bbfec885f738fad734dac54..5a220c97b809ac8477401c297e662f01a66af438 100755
--- a/Source/UI/ControlPanel.cpp
+++ b/Source/UI/ControlPanel.cpp
@@ -581,11 +581,11 @@ void ControlPanel::resized()
     if (audioEditor != 0)
     {
         if (getWidth() < 750 && getWidth() >= 570)
-            audioEditor->setBounds(w-526,5,h*8,h-10);
+            audioEditor->setBounds(w-526,0,h*8,h);
        else if (getWidth() < 570)
-            audioEditor->setBounds(8,5+offset2,h*8,h-10);
+            audioEditor->setBounds(8,0+offset2,h*8,h);
         else
-            audioEditor->setBounds(h*7,5,h*8,h-10);
+            audioEditor->setBounds(h*7,0,h*8,h);
     }