diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-19 21:15:40 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-19 21:15:40 -0500 |
| commit | 147410e39bf4e0474deca3980dcaa724464cf5c3 (patch) | |
| tree | 161d19ded2f40caf4021e156bee3b889df8553de /modules/controlcenter/components/SplitPaneLayout.qml | |
| parent | cleanup: removed comments (diff) | |
| download | caelestia-shell-147410e39bf4e0474deca3980dcaa724464cf5c3.tar.gz caelestia-shell-147410e39bf4e0474deca3980dcaa724464cf5c3.tar.bz2 caelestia-shell-147410e39bf4e0474deca3980dcaa724464cf5c3.zip | |
cleanup: removed unnecessary comments
Diffstat (limited to 'modules/controlcenter/components/SplitPaneLayout.qml')
| -rw-r--r-- | modules/controlcenter/components/SplitPaneLayout.qml | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/controlcenter/components/SplitPaneLayout.qml b/modules/controlcenter/components/SplitPaneLayout.qml index 7bd7db0..8b4f0d9 100644 --- a/modules/controlcenter/components/SplitPaneLayout.qml +++ b/modules/controlcenter/components/SplitPaneLayout.qml @@ -15,19 +15,14 @@ RowLayout { property Component leftContent: null property Component rightContent: null - // Left pane configuration property real leftWidthRatio: 0.4 property int leftMinimumWidth: 420 property var leftLoaderProperties: ({}) - - // Right pane configuration property var rightLoaderProperties: ({}) - // Expose loaders for customization (access via splitLayout.leftLoader or splitLayout.rightLoader) property alias leftLoader: leftLoader property alias rightLoader: rightLoader - // Left pane Item { id: leftPane @@ -57,7 +52,6 @@ RowLayout { asynchronous: true sourceComponent: root.leftContent - // Apply any additional properties from leftLoaderProperties Component.onCompleted: { for (const key in root.leftLoaderProperties) { leftLoader[key] = root.leftLoaderProperties[key]; @@ -74,7 +68,6 @@ RowLayout { } } - // Right pane Item { id: rightPane @@ -101,7 +94,6 @@ RowLayout { asynchronous: true sourceComponent: root.rightContent - // Apply any additional properties from rightLoaderProperties Component.onCompleted: { for (const key in root.rightLoaderProperties) { rightLoader[key] = root.rightLoaderProperties[key]; |