Browse Source

Added juce version display to plugin demo.

tags/2021-05-28
jules 12 years ago
parent
commit
7ae92cf1ba
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/audio plugin demo/Source/PluginEditor.cpp

+ 1
- 1
extras/audio plugin demo/Source/PluginEditor.cpp View File

@@ -173,5 +173,5 @@ void JuceDemoPluginAudioProcessorEditor::displayPositionInfo (const AudioPlayHea
else if (pos.isPlaying)
displayText << " (playing)";
infoLabel.setText (displayText, dontSendNotification);
infoLabel.setText ("[" + SystemStats::getJUCEVersion() + "] " + displayText, dontSendNotification);
}

Loading…
Cancel
Save