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/bar/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/bar/components')
| -rw-r--r-- | modules/bar/components/Clock.qml | 1 | ||||
| -rw-r--r-- | modules/bar/components/StatusIcons.qml | 1 | ||||
| -rw-r--r-- | modules/bar/components/workspaces/SpecialWorkspaces.qml | 3 | ||||
| -rw-r--r-- | modules/bar/components/workspaces/Workspace.qml | 1 | ||||
| -rw-r--r-- | modules/bar/components/workspaces/Workspaces.qml | 3 |
5 files changed, 0 insertions, 9 deletions
diff --git a/modules/bar/components/Clock.qml b/modules/bar/components/Clock.qml index be29c0b..801e93d 100644 --- a/modules/bar/components/Clock.qml +++ b/modules/bar/components/Clock.qml @@ -17,7 +17,6 @@ Column { active: Config.bar.clock.showIcon visible: active - asynchronous: true sourceComponent: MaterialIcon { text: "calendar_month" diff --git a/modules/bar/components/StatusIcons.qml b/modules/bar/components/StatusIcons.qml index 2f52596..74e6d00 100644 --- a/modules/bar/components/StatusIcons.qml +++ b/modules/bar/components/StatusIcons.qml @@ -265,7 +265,6 @@ StyledRect { required property string name Layout.alignment: Qt.AlignHCenter - asynchronous: true visible: active } } diff --git a/modules/bar/components/workspaces/SpecialWorkspaces.qml b/modules/bar/components/workspaces/SpecialWorkspaces.qml index ff2652e..866022a 100644 --- a/modules/bar/components/workspaces/SpecialWorkspaces.qml +++ b/modules/bar/components/workspaces/SpecialWorkspaces.qml @@ -167,7 +167,6 @@ Item { Layout.alignment: Qt.AlignHCenter | Qt.AlignTop Layout.preferredHeight: Config.bar.sizes.innerWidth - Appearance.padding.small * 2 - asynchronous: true sourceComponent: ws.icon.length === 1 ? letterComp : iconComp Component { @@ -199,7 +198,6 @@ Item { visible: active active: ws.hasWindows - asynchronous: true sourceComponent: Column { spacing: 0 @@ -292,7 +290,6 @@ Item { Loader { active: Config.bar.workspaces.activeIndicator - asynchronous: true anchors.fill: parent sourceComponent: Item { diff --git a/modules/bar/components/workspaces/Workspace.qml b/modules/bar/components/workspaces/Workspace.qml index d9d103d..3c8238b 100644 --- a/modules/bar/components/workspaces/Workspace.qml +++ b/modules/bar/components/workspaces/Workspace.qml @@ -61,7 +61,6 @@ ColumnLayout { visible: active active: root.hasWindows - asynchronous: true sourceComponent: Column { spacing: 0 diff --git a/modules/bar/components/workspaces/Workspaces.qml b/modules/bar/components/workspaces/Workspaces.qml index b146aae..ad20ab6 100644 --- a/modules/bar/components/workspaces/Workspaces.qml +++ b/modules/bar/components/workspaces/Workspaces.qml @@ -44,7 +44,6 @@ StyledClippingRect { Loader { active: Config.bar.workspaces.occupiedBg - asynchronous: true anchors.fill: parent anchors.margins: Appearance.padding.small @@ -78,7 +77,6 @@ StyledClippingRect { Loader { anchors.horizontalCenter: parent.horizontalCenter active: Config.bar.workspaces.activeIndicator - asynchronous: true sourceComponent: ActiveIndicator { activeWsId: root.activeWsId @@ -114,7 +112,6 @@ StyledClippingRect { anchors.margins: Appearance.padding.small active: opacity > 0 - asynchronous: true scale: root.onSpecial ? 1 : 0.5 opacity: root.onSpecial ? 1 : 0 |