From 3274003577bd62582a75408f2771e7dcbe77151f Mon Sep 17 00:00:00 2001 From: namedkitten Date: Tue, 28 Apr 2020 04:01:50 +0100 Subject: [PATCH] Fix? --- src/qml/main.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/qml/main.qml b/src/qml/main.qml index 7b75bea..1ea64bc 100644 --- a/src/qml/main.qml +++ b/src/qml/main.qml @@ -390,9 +390,12 @@ Window { onTriggered: { if (appearance.clickToPause) { player.playerCommand(Enums.Commands.TogglePlayPause) + return + } + if (topBar.visible) { + globalConnections.hideUI() } else { globalConnections.showUI() - mouseAreaPlayerTimer.restart() } } }