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:
parent
2d441a63ee
commit
fb29acf1fa
5 changed files with 20 additions and 33 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue