1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added juce version display to plugin demo.

This commit is contained in:
jules 2014-02-17 16:07:22 +00:00
parent 36c46db3e6
commit 7ae92cf1ba

View file

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