mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-28 02:30:05 +00:00
Slider: Added missing ComponentPeer flags to the popup display of a slider
This commit is contained in:
parent
3e327a5390
commit
9fee13ba82
1 changed files with 3 additions and 1 deletions
|
|
@ -995,7 +995,9 @@ public:
|
|||
if (parentForPopupDisplay != nullptr)
|
||||
parentForPopupDisplay->addChildComponent (popupDisplay.get());
|
||||
else
|
||||
popupDisplay->addToDesktop (ComponentPeer::windowIsTemporary);
|
||||
popupDisplay->addToDesktop (ComponentPeer::windowIsTemporary
|
||||
| ComponentPeer::windowIgnoresKeyPresses
|
||||
| ComponentPeer::windowIgnoresMouseClicks);
|
||||
|
||||
if (style == SliderStyle::TwoValueHorizontal
|
||||
|| style == SliderStyle::TwoValueVertical)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue