mirror of
https://github.com/kossLAN/dots.git
synced 2025-11-05 06:59:50 -05:00
feat: bluetooth widget
This commit is contained in:
parent
83d7dc47c4
commit
92316b3ca9
6 changed files with 300 additions and 5 deletions
|
|
@ -47,6 +47,8 @@ Loader {
|
|||
}
|
||||
|
||||
StyledSlider {
|
||||
implicitHeight: 7
|
||||
handleHeight: 12
|
||||
value: root.node.audio.volume ?? 0
|
||||
|
||||
onValueChanged: {
|
||||
|
|
|
|||
|
|
@ -38,9 +38,9 @@ StyledMouseArea {
|
|||
onClosed: root.showMenu = false
|
||||
|
||||
implicitWidth: 275
|
||||
implicitHeight: container.implicitHeight + (2 * 8)
|
||||
implicitHeight: container.implicitHeight + (2 * container.anchors.margins)
|
||||
|
||||
property real entryHeight: 40
|
||||
property real entryHeight: 38
|
||||
|
||||
ColumnLayout {
|
||||
id: container
|
||||
|
|
@ -91,7 +91,7 @@ StyledMouseArea {
|
|||
|
||||
Layout.fillWidth: true
|
||||
Layout.preferredHeight: {
|
||||
const entryHeight = Math.min(5, linkTracker.linkGroups.length);
|
||||
const entryHeight = Math.min(6, linkTracker.linkGroups.length);
|
||||
|
||||
return entryHeight * (menu.entryHeight + appList.spacing);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue