make volume device selection use a combobox

This commit is contained in:
end-4
2025-11-08 16:48:00 +01:00
parent 769ed3bf71
commit 3b1d8fd262
3 changed files with 49 additions and 55 deletions
@@ -11,21 +11,23 @@ import Quickshell.Services.Pipewire
WindowDialog {
id: root
property bool isSink: true
backgroundHeight: 700
backgroundHeight: 600
WindowDialogTitle {
text: root.isSink ? Translation.tr("Audio output") : Translation.tr("Audio input")
}
VolumeDialogContent {
isSink: root.isSink
}
WindowDialogSeparator {
visible: root.hasApps
Layout.topMargin: -22
Layout.leftMargin: 0
Layout.rightMargin: 0
}
VolumeDialogContent {
isSink: root.isSink
}
WindowDialogButtonRow {
DialogButton {
buttonText: Translation.tr("Details")