From 16e5059c7afff8c500c0fd3d44fd1329bc353fea Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Sun, 31 Aug 2025 23:35:24 -0400 Subject: [PATCH] empty item --- components/StyledSwitch.qml | 2 +- modules/pomodoro/Pomodoro.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/StyledSwitch.qml b/components/StyledSwitch.qml index c2af7db..f1671b1 100644 --- a/components/StyledSwitch.qml +++ b/components/StyledSwitch.qml @@ -51,5 +51,5 @@ Switch { } } - background: null + background: Item {} } diff --git a/modules/pomodoro/Pomodoro.qml b/modules/pomodoro/Pomodoro.qml index 9d970d8..249dcda 100644 --- a/modules/pomodoro/Pomodoro.qml +++ b/modules/pomodoro/Pomodoro.qml @@ -72,7 +72,7 @@ StyledWindow { text: Pomodoro.running ? Icons.square : Icons.play font.pixelSize: 48 - background: undefined + background: Item {} onClicked: { Pomodoro.toggle(); }