Browse Source

tags/2021-05-28
jules 18 years ago
parent
commit
f3d0fe71d8
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      extras/audio plugin host/src/host/GraphEditorPanel.cpp

+ 5
- 5
extras/audio plugin host/src/host/GraphEditorPanel.cpp View File

@@ -893,16 +893,16 @@ void GraphEditorPanel::endDraggingConnector (const MouseEvent& e)
//==============================================================================
class StatusAndTooltipBar : public Component,
private Timer
class TooltipBar : public Component,
private Timer
{
public:
StatusAndTooltipBar()
TooltipBar()
{
startTimer (100);
}
~StatusAndTooltipBar()
~TooltipBar()
{
}
@@ -947,7 +947,7 @@ GraphDocumentComponent::GraphDocumentComponent (AudioDeviceManager* deviceManage
addAndMakeVisible (keyboardComp = new MidiKeyboardComponent (graphPlayer->keyState,
MidiKeyboardComponent::horizontalKeyboard));
addAndMakeVisible (statusBar = new StatusAndTooltipBar());
addAndMakeVisible (statusBar = new TooltipBar());
graphPlayer->setAudioDeviceManager (deviceManager);


Loading…
Cancel
Save