mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-07 04:10:08 +00:00
AlertWindow: Make accessible label component colours fully transparent to prevent it from drawing over custom L&Fs
This commit is contained in:
parent
67dfc1975c
commit
49db3ce12e
1 changed files with 3 additions and 1 deletions
|
|
@ -47,7 +47,9 @@ AlertWindow::AlertWindow (const String& title,
|
|||
{
|
||||
setAlwaysOnTop (juce_areThereAnyAlwaysOnTopWindows());
|
||||
|
||||
accessibleMessageLabel.setColour (Label::textColourId, Colours::transparentBlack);
|
||||
accessibleMessageLabel.setColour (Label::textColourId, Colours::transparentBlack);
|
||||
accessibleMessageLabel.setColour (Label::backgroundColourId, Colours::transparentBlack);
|
||||
accessibleMessageLabel.setColour (Label::outlineColourId, Colours::transparentBlack);
|
||||
addAndMakeVisible (accessibleMessageLabel);
|
||||
|
||||
if (message.isEmpty())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue