Add splitters to all panels... for now

This commit is contained in:
David Heinemeier Hansson
2026-06-07 20:58:02 +02:00
parent 8baae47d48
commit 3d4bb9ab81
3 changed files with 44 additions and 1 deletions
+14
View File
@@ -650,6 +650,10 @@ Panel {
}
// ---- Output devices ----
PanelSeparator {
foreground: root.bar.foreground
}
Column {
width: parent.width
spacing: Style.space(6)
@@ -729,6 +733,11 @@ Panel {
}
// ---- Input ----
PanelSeparator {
visible: root.displayAudioSources.length > 0 || !!root.source
foreground: root.bar.foreground
}
Column {
width: parent.width
spacing: Style.space(6)
@@ -830,6 +839,11 @@ Panel {
}
// ---- Per-app streams ----
PanelSeparator {
visible: root.displayAudioStreams.length > 0
foreground: root.bar.foreground
}
Column {
width: parent.width
spacing: Style.space(10)