active window title + workspace fix

This commit is contained in:
end-4
2025-04-11 17:10:19 +02:00
parent c29041aa9e
commit 06fc4baf4e
7 changed files with 61 additions and 10 deletions
@@ -19,6 +19,12 @@ Item {
onValueChanged: {
canvas.degree = value * 360;
}
onPrimaryColorChanged: {
canvas.requestPaint();
}
onSecondaryColorChanged: {
canvas.requestPaint();
}
Canvas {
id: canvas
@@ -27,9 +33,11 @@ Item {
anchors.fill: parent
antialiasing: true
onDegreeChanged: {
requestPaint();
}
onPaint: {
var ctx = getContext("2d");
var x = root.width / 2;