mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-17 00:44:19 +00:00
This commit is contained in:
parent
62e4870bde
commit
f3d0fe71d8
1 changed files with 5 additions and 5 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue