From 583e27dac6426fcf689cb328bbdf1f06a9478ed5 Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Tue, 28 Nov 2023 15:39:20 +0100 Subject: [PATCH] disabling the overlay to work around the clipping problem, when fading in/out --- src/controls/QskMenu.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/controls/QskMenu.cpp b/src/controls/QskMenu.cpp index e3af5707..3d22ce17 100644 --- a/src/controls/QskMenu.cpp +++ b/src/controls/QskMenu.cpp @@ -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 );