mirror of
https://github.com/kossLAN/dots.git
synced 2025-11-04 22:49:50 -05:00
fix: file permissions that got messed up
This commit is contained in:
parent
c48aca3d0c
commit
f59fe534cf
10 changed files with 190 additions and 137 deletions
|
|
@ -3,32 +3,34 @@ pragma ComponentBehavior: Bound
|
|||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import Quickshell.Widgets
|
||||
import "../../widgets/" as Widgets
|
||||
import qs.widgets
|
||||
|
||||
WrapperItem {
|
||||
id: root
|
||||
visible: false
|
||||
DeviceMixer {}
|
||||
|
||||
ColumnLayout {
|
||||
spacing: 10
|
||||
|
||||
Widgets.TabBar {
|
||||
id: tabBar
|
||||
model: ["headphones", "tune"]
|
||||
Layout.fillWidth: true
|
||||
Layout.preferredHeight: 35
|
||||
}
|
||||
|
||||
StackLayout {
|
||||
id: page
|
||||
currentIndex: tabBar.currentIndex
|
||||
Layout.fillWidth: true
|
||||
Layout.preferredHeight: currentItem ? currentItem.implicitHeight : 0
|
||||
|
||||
readonly property Item currentItem: children[currentIndex]
|
||||
|
||||
DeviceMixer {}
|
||||
ApplicationMixer {}
|
||||
}
|
||||
}
|
||||
}
|
||||
// WrapperItem {
|
||||
// id: root
|
||||
//
|
||||
// ColumnLayout {
|
||||
// spacing: 10
|
||||
//
|
||||
// // TabBar {
|
||||
// // id: tabBar
|
||||
// // model: ["headphones", "tune"]
|
||||
// // Layout.fillWidth: true
|
||||
// // Layout.preferredHeight: 35
|
||||
// // }
|
||||
//
|
||||
//
|
||||
// // StackLayout {
|
||||
// // id: page
|
||||
// // currentIndex: tabBar.currentIndex
|
||||
// // Layout.fillWidth: true
|
||||
// // Layout.preferredHeight: currentItem ? currentItem.implicitHeight : 0
|
||||
// //
|
||||
// // readonly property Item currentItem: children[currentIndex]
|
||||
// //
|
||||
// // DeviceMixer {}
|
||||
// // ApplicationMixer {}
|
||||
// // }
|
||||
// }
|
||||
// }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue