From ccd38b06b97fa2ffcefbfa5120581672dfb5cb49 Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Wed, 29 Nov 2023 15:41:59 +0100 Subject: [PATCH] Formatting #2 --- ScreenPlay/qml/TrayIcon.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ScreenPlay/qml/TrayIcon.qml b/ScreenPlay/qml/TrayIcon.qml index 5e509787..496af6b3 100644 --- a/ScreenPlay/qml/TrayIcon.qml +++ b/ScreenPlay/qml/TrayIcon.qml @@ -114,12 +114,12 @@ SystemTrayIcon { if (miMuteAll.isMuted) { isMuted = false; miMuteAll.text = qsTr("Mute all"); - miMuteAll.icon.source = "qrc:/qml/ScreenPlayApp/assets/icons/icon_volume_mute.svg" + miMuteAll.icon.source = "qrc:/qml/ScreenPlayApp/assets/icons/icon_volume_mute.svg"; App.screenPlayManager.setAllWallpaperValue("muted", "true"); } else { isMuted = true; miMuteAll.text = qsTr("Unmute all"); - miMuteAll.icon.source = "qrc:/qml/ScreenPlayApp/assets/icons/icon_volume_up.svg" + miMuteAll.icon.source = "qrc:/qml/ScreenPlayApp/assets/icons/icon_volume_up.svg"; App.screenPlayManager.setAllWallpaperValue("muted", "false"); } } @@ -136,12 +136,12 @@ SystemTrayIcon { if (miStopAll.isPlaying) { isPlaying = false; miStopAll.text = qsTr("Pause all"); - miStopAll.icon.source = "qrc:/qml/ScreenPlayApp/assets/icons/icon_pause.svg" + miStopAll.icon.source = "qrc:/qml/ScreenPlayApp/assets/icons/icon_pause.svg"; App.screenPlayManager.setAllWallpaperValue("isPlaying", "true"); } else { isPlaying = true; miStopAll.text = qsTr("Play all"); - miStopAll.icon.source = "qrc:/qml/ScreenPlayApp/assets/icons/icon_play.svg" + miStopAll.icon.source = "qrc:/qml/ScreenPlayApp/assets/icons/icon_play.svg"; App.screenPlayManager.setAllWallpaperValue("isPlaying", "false"); } }