1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-02 03:20:06 +00:00

Introjucer: minor internal stuff.

This commit is contained in:
jules 2012-07-07 15:05:25 +01:00
parent 2d441a63ee
commit fb29acf1fa
5 changed files with 20 additions and 33 deletions

View file

@ -506,3 +506,11 @@ bool ProjectContentComponent::reinvokeCommandAfterClosingPropertyEditors (const
return false;
}
void ProjectContentComponent::showBubbleMessage (const Point<int>& pos, const String& text)
{
addChildComponent (&bubbleMessage);
bubbleMessage.setAlwaysOnTop (true);
bubbleMessage.showAt (pos, AttributedString (text), 3000, true, false);
}