diff options
Diffstat (limited to 'modules/controlcenter')
11 files changed, 0 insertions, 18 deletions
diff --git a/modules/controlcenter/ControlCenter.qml b/modules/controlcenter/ControlCenter.qml index fdb824e..043e7e1 100644 --- a/modules/controlcenter/ControlCenter.qml +++ b/modules/controlcenter/ControlCenter.qml @@ -42,7 +42,6 @@ Item { Layout.fillWidth: true Layout.columnSpan: 2 - asynchronous: true active: root.floating visible: active diff --git a/modules/controlcenter/NavRail.qml b/modules/controlcenter/NavRail.qml index ef338b2..e61a741 100644 --- a/modules/controlcenter/NavRail.qml +++ b/modules/controlcenter/NavRail.qml @@ -43,7 +43,6 @@ Item { Loader { Layout.topMargin: Appearance.spacing.large - asynchronous: true active: !root.session.floating visible: active diff --git a/modules/controlcenter/Panes.qml b/modules/controlcenter/Panes.qml index 833a411..eba7de1 100644 --- a/modules/controlcenter/Panes.qml +++ b/modules/controlcenter/Panes.qml @@ -129,7 +129,6 @@ ClippingRectangle { anchors.fill: parent clip: false - asynchronous: true active: false Component.onCompleted: { diff --git a/modules/controlcenter/appearance/AppearancePane.qml b/modules/controlcenter/appearance/AppearancePane.qml index b6acbe5..257120b 100644 --- a/modules/controlcenter/appearance/AppearancePane.qml +++ b/modules/controlcenter/appearance/AppearancePane.qml @@ -103,7 +103,6 @@ Item { Layout.fillHeight: true Layout.bottomMargin: -Appearance.padding.large * 2 - asynchronous: true active: { const isActive = root.session.activeIndex === 3; const isAdjacent = Math.abs(root.session.activeIndex - 3) === 1; diff --git a/modules/controlcenter/appearance/sections/ColorSchemeSection.qml b/modules/controlcenter/appearance/sections/ColorSchemeSection.qml index c0e5eb5..691d908 100644 --- a/modules/controlcenter/appearance/sections/ColorSchemeSection.qml +++ b/modules/controlcenter/appearance/sections/ColorSchemeSection.qml @@ -129,7 +129,6 @@ CollapsibleSection { Loader { active: isCurrent - asynchronous: true sourceComponent: MaterialIcon { text: "check" diff --git a/modules/controlcenter/appearance/sections/FontsSection.qml b/modules/controlcenter/appearance/sections/FontsSection.qml index 57b10ff..ef807b1 100644 --- a/modules/controlcenter/appearance/sections/FontsSection.qml +++ b/modules/controlcenter/appearance/sections/FontsSection.qml @@ -29,7 +29,6 @@ CollapsibleSection { id: materialFontLoader Layout.fillWidth: true Layout.preferredHeight: item ? Math.min(item.contentHeight, 300) : 0 - asynchronous: true active: materialFontSection.expanded sourceComponent: StyledListView { @@ -84,7 +83,6 @@ CollapsibleSection { Loader { active: isCurrent - asynchronous: true sourceComponent: MaterialIcon { text: "check" @@ -110,7 +108,6 @@ CollapsibleSection { Loader { Layout.fillWidth: true Layout.preferredHeight: item ? Math.min(item.contentHeight, 300) : 0 - asynchronous: true active: monoFontSection.expanded sourceComponent: StyledListView { @@ -165,7 +162,6 @@ CollapsibleSection { Loader { active: isCurrent - asynchronous: true sourceComponent: MaterialIcon { text: "check" @@ -191,7 +187,6 @@ CollapsibleSection { Loader { Layout.fillWidth: true Layout.preferredHeight: item ? Math.min(item.contentHeight, 300) : 0 - asynchronous: true active: sansFontSection.expanded sourceComponent: StyledListView { @@ -246,7 +241,6 @@ CollapsibleSection { Loader { active: isCurrent - asynchronous: true sourceComponent: MaterialIcon { text: "check" 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 } diff --git a/modules/controlcenter/launcher/LauncherPane.qml b/modules/controlcenter/launcher/LauncherPane.qml index 47f87cc..fabe75e 100644 --- a/modules/controlcenter/launcher/LauncherPane.qml +++ b/modules/controlcenter/launcher/LauncherPane.qml @@ -289,7 +289,6 @@ Item { id: appsListLoader Layout.fillWidth: true Layout.fillHeight: true - asynchronous: true active: true sourceComponent: StyledListView { @@ -396,7 +395,6 @@ Item { transformOrigin: Item.Center clip: false - asynchronous: true sourceComponent: rightLauncherPane.targetComponent active: true diff --git a/modules/controlcenter/network/NetworkingPane.qml b/modules/controlcenter/network/NetworkingPane.qml index b430cce..a87a16f 100644 --- a/modules/controlcenter/network/NetworkingPane.qml +++ b/modules/controlcenter/network/NetworkingPane.qml @@ -208,7 +208,6 @@ Item { transformOrigin: Item.Center clip: false - asynchronous: true sourceComponent: rightPaneItem.targetComponent } diff --git a/modules/controlcenter/taskbar/TaskbarPane.qml b/modules/controlcenter/taskbar/TaskbarPane.qml index 5d51c8c..efd4a76 100644 --- a/modules/controlcenter/taskbar/TaskbarPane.qml +++ b/modules/controlcenter/taskbar/TaskbarPane.qml @@ -125,7 +125,6 @@ Item { anchors.leftMargin: Appearance.padding.large anchors.rightMargin: Appearance.padding.large - asynchronous: true sourceComponent: taskbarContentComponent } } |