disabling the overlay to work around the clipping problem, when fading

in/out
This commit is contained in:
Uwe Rathmann 2023-11-28 15:39:20 +01:00
parent 6c826c3adc
commit 583e27dac6

View File

@ -60,6 +60,13 @@ QskMenu::QskMenu( QQuickItem* parent )
: Inherited( parent )
, m_data( new PrivateData )
{
#if 1
/*
The overlay is clipped from the drop down fading effect.
Until it is fixed we simply disable it. TODO ...
*/
setOverlay( false );
#endif
setModal( true );
setPopupFlag( QskPopup::CloseOnPressOutside, true );