Skip to content

Commit

Permalink
disabling the overlay to work around the clipping problem, when fading
Browse files Browse the repository at this point in the history
in/out
  • Loading branch information
uwerat committed Nov 28, 2023
1 parent 6c826c3 commit 583e27d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/controls/QskMenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
Expand Down

0 comments on commit 583e27d

Please sign in to comment.