1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 13:32:50 -05:00

Remove redundant timer check

This commit is contained in:
purian23
2025-09-13 21:05:16 -04:00
parent 3db1a2ccf2
commit 07c1677145

View File

@@ -58,7 +58,6 @@ DankOSD {
cursorShape: Qt.PointingHandCursor
onClicked: {
AudioService.toggleMute()
hideTimer.restart()
}
onContainsMouseChanged: {
setChildHovered(containsMouse || volumeSlider.containsMouse)
@@ -92,7 +91,6 @@ DankOSD {
onSliderValueChanged: newValue => {
if (AudioService.sink && AudioService.sink.audio) {
AudioService.sink.audio.volume = newValue / 100
hideTimer.restart()
}
}