diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2026-01-16 01:40:38 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2026-01-16 01:40:38 +1100 |
| commit | 4f7f21a86dea0cd8c12b9b748ea19d95aefa43b8 (patch) | |
| tree | 6a7ee19dcc0b6387fc991542b22d3fbe20e65795 /modules/controlcenter/components | |
| parent | background: non async loader (diff) | |
| download | caelestia-shell-4f7f21a86dea0cd8c12b9b748ea19d95aefa43b8.tar.gz caelestia-shell-4f7f21a86dea0cd8c12b9b748ea19d95aefa43b8.tar.bz2 caelestia-shell-4f7f21a86dea0cd8c12b9b748ea19d95aefa43b8.zip | |
internal: no async loaders
Fixes reload issue and all stuff not loading issues
Diffstat (limited to 'modules/controlcenter/components')
| -rw-r--r-- | modules/controlcenter/components/SplitPaneLayout.qml | 2 | ||||
| -rw-r--r-- | modules/controlcenter/components/SplitPaneWithDetails.qml | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/modules/controlcenter/components/SplitPaneLayout.qml b/modules/controlcenter/components/SplitPaneLayout.qml index 8b4f0d9..3609a74 100644 --- a/modules/controlcenter/components/SplitPaneLayout.qml +++ b/modules/controlcenter/components/SplitPaneLayout.qml @@ -49,7 +49,6 @@ RowLayout { anchors.leftMargin: Appearance.padding.large anchors.rightMargin: Appearance.padding.large + Appearance.padding.normal / 2 - asynchronous: true sourceComponent: root.leftContent Component.onCompleted: { @@ -91,7 +90,6 @@ RowLayout { anchors.fill: parent anchors.margins: Appearance.padding.large * 2 - asynchronous: true sourceComponent: root.rightContent Component.onCompleted: { diff --git a/modules/controlcenter/components/SplitPaneWithDetails.qml b/modules/controlcenter/components/SplitPaneWithDetails.qml index e873923..5db5bdb 100644 --- a/modules/controlcenter/components/SplitPaneWithDetails.qml +++ b/modules/controlcenter/components/SplitPaneWithDetails.qml @@ -56,7 +56,6 @@ Item { transformOrigin: Item.Center clip: false - asynchronous: true sourceComponent: rightPaneItem.targetComponent } |