https://bugs.kde.org/show_bug.cgi?id=496144
--- Comment #1 from george fb <georgefb...@gmail.com> --- Sample app ``` import QtQuick import QtQuick.Controls import QtQuick.Layouts import org.kde.kirigami as Kirigami Window { width: 640 height: 480 visible: true title: qsTr("Hello World") Action { shortcut: "ctrl+c" onTriggered: { console.log(rectangle.color) rectangle.color = rectangle.color == "#008000" ? "#ff0000" : "#008000" } } ColumnLayout { Rectangle { id: rectangle width: 100 height: 100 color: "#008000" } Kirigami.SelectableLabel { text: "12345" } Kirigami.SelectableLabel { text: "67890" } Kirigami.SelectableLabel { text: "67890" } } } ``` -- You are receiving this mail because: You are watching all bug changes.