overlay: add kurukuru

This commit is contained in:
end-4
2025-11-09 12:58:48 +01:00
parent 8f4190a939
commit baa3c2a773
8 changed files with 142 additions and 15 deletions
@@ -33,8 +33,8 @@ AbstractOverlayWidget {
property string title: identifier.replace(/([A-Z])/g, " $1").replace(/^./, function(str){ return str.toUpperCase(); })
property var persistentStateEntry: Persistent.states.overlay[identifier]
property real radius: Appearance.rounding.windowRounding
property real minimumWidth: 250
property real minimumHeight: 100
property real minimumWidth: contentItem.implicitWidth
property real minimumHeight: contentItem.implicitHeight
property real resizeMargin: 8
property real padding: 6
property real contentRadius: radius - padding
@@ -238,8 +238,8 @@ AbstractOverlayWidget {
}
StyledText {
text: root.title
Layout.fillWidth: true
text: root.title
elide: Text.ElideRight
}