1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-11 00:02:28 -04:00

feat: Alias for Audio Devices

- New custom audio UI to set custom names for input/output devices
This commit is contained in:
purian23
2026-02-04 07:09:55 -05:00
parent 6e3b3ce888
commit 961680af8c
5 changed files with 983 additions and 8 deletions

View File

@@ -458,5 +458,20 @@ FocusScope {
Qt.callLater(() => item.forceActiveFocus());
}
}
Loader {
id: audioLoader
anchors.fill: parent
active: root.currentIndex === 29
visible: active
focus: active
sourceComponent: AudioTab {}
onActiveChanged: {
if (active && item)
Qt.callLater(() => item.forceActiveFocus());
}
}
}
}