perf(shapes): enable async rendering for all CurveRenderer shapes

This commit is contained in:
Lemmy
2026-03-10 09:31:20 -04:00
parent 87c072e2cf
commit e8ee0548cb
4 changed files with 7 additions and 0 deletions
@@ -44,6 +44,7 @@ Item {
id: unifiedBackgroundsShape
anchors.fill: parent
preferredRendererType: Shape.CurveRenderer
asynchronous: true
enabled: false
Component.onCompleted: {
@@ -111,6 +112,7 @@ Item {
id: panelBackgroundsShape
anchors.fill: parent
preferredRendererType: Shape.CurveRenderer
asynchronous: true
enabled: false
/**
@@ -159,6 +161,7 @@ Item {
id: barBackgroundShape
anchors.fill: parent
preferredRendererType: Shape.CurveRenderer
asynchronous: true
enabled: false
BarBackground {
+1
View File
@@ -25,6 +25,7 @@ Item {
anchors.fill: parent
preferredRendererType: Shape.CurveRenderer
asynchronous: true
enabled: false // Disable mouse input
visible: cornersPath.cornerRadius > 0 && width > 0 && height > 0