https://bugs.kde.org/show_bug.cgi?id=506916

Błażej Szczygieł <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #4 from Błażej Szczygieł <[email protected]> ---
I have this crash non-stop in QtQuick application with Window popup type and
Vulkan renderer (Qt 6.10.2). The transientFor() is NULL.

Steps to reproduce:
- set Vulkan renderer -
QQuickWindow::setGraphicsApi(QSGRendererInterface::Vulkan) and make sure you
have V-Sync enabled (don't use QSG_NO_VSYNC), RADV drivers in my case
- launch QML application (code below)
- open context menu
- trigger menu item
- repeat it a few times
- after few times, menu doesn't popup anymore and later after more attempts to
open a menu - kwin crashes

Example application:

import QtQuick
import QtQuick.Controls
ApplicationWindow {
    visible: true
    Item {
        anchors.fill: parent
        ContextMenu.menu: Menu {
            id: menu
            popupType: Popup.Window
            MenuItem {
                text: "Test"
                onTriggered: {
                    console.log(text)
                }
            }
        }
    }
}

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to