last 7 months of qs changes
This commit is contained in:
parent
2c64563ade
commit
4b90113a54
103 changed files with 3467 additions and 1415 deletions
|
|
@ -0,0 +1,16 @@
|
|||
import QtQuick
|
||||
import QtQuick.Controls
|
||||
import Quickshell.Services.Pipewire
|
||||
|
||||
MixerEntryBase {
|
||||
id: root
|
||||
required property list<PwNode> nodeList;
|
||||
|
||||
signal selected(node: PwNode);
|
||||
|
||||
headerComponent: ComboBox {
|
||||
model: nodeList.map(node => root.getNodeName(node));
|
||||
currentIndex: nodeList.findIndex(node => node == root.node)
|
||||
onActivated: index => root.selected(nodeList[index])
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue