https://bugs.kde.org/show_bug.cgi?id=471516
Bug ID: 471516
Summary: Action buttons in InlineMessage escape from visual
content area when text wraps
Classification: Frameworks and Libraries
Product: frameworks-kirigami
Version: Master
Platform: Other
OS: Linux
Status: REPORTED
Keywords: qt6
Severity: normal
Priority: NOR
Component: general
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected]
Target Milestone: Not decided
Run this test case in qmlscene-qt6 and them resize the window so that the text
wraps:
import QtQuick
import QtQuick.Controls as QQC2
import org.kde.kirigami 2.20 as Kirigami
Item {
width: 300
height: 200
Kirigami.InlineMessage {
anchors {
left: parent.left
right: parent.right
top: parent.top
}
text: "This is some text and oh my god it's soooooo long"
visible: true
showCloseButton: true
actions: [
QQC2.Action {
icon.name: "edit-bomb"
text: "I am here, click me"
onTriggered: {
console.warn("Hello World")
}
}
]
}
}
--
You are receiving this mail because:
You are watching all bug changes.