From 5ca283f43b2336fb7c8a520f14e3fdfeb6d32d11 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Mon, 12 May 2025 13:35:47 +1000 Subject: session: disable show on hover --- modules/session/Content.qml | 2 +- modules/session/Session.qml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'modules') diff --git a/modules/session/Content.qml b/modules/session/Content.qml index 75559b2..64f877c 100644 --- a/modules/session/Content.qml +++ b/modules/session/Content.qml @@ -53,7 +53,7 @@ Column { sourceSize.width: width sourceSize.height: height - playing: session.sessionVisible + playing: visible asynchronous: true speed: 0.7 source: "root:/assets/kurukuru.gif" diff --git a/modules/session/Session.qml b/modules/session/Session.qml index 0f8a0d5..8a6674c 100644 --- a/modules/session/Session.qml +++ b/modules/session/Session.qml @@ -11,14 +11,14 @@ Scope { property int winHeight property bool sessionVisible - Connections { - target: Drawers - - function onPosChanged(screen: ShellScreen, x: int, y: int): void { - if (x > screen.width - BorderConfig.thickness && y > (screen.height - root.winHeight) / 2 && y < (screen.height + root.winHeight) / 2) - root.sessionVisible = true; - } - } + // Connections { + // target: Drawers + + // function onPosChanged(screen: ShellScreen, x: int, y: int): void { + // if (x > screen.width - BorderConfig.thickness && y > (screen.height - root.winHeight) / 2 && y < (screen.height + root.winHeight) / 2) + // root.sessionVisible = true; + // } + // } LazyLoader { loading: true -- cgit v1.2.3-freya