From 70d1d9462775d4aaec632b31c8c82bee79b8f3b5 Mon Sep 17 00:00:00 2001 From: wjyrich Date: Tue, 28 Apr 2026 10:29:59 +0800 Subject: [PATCH] chore: update copyright years and fix tooltip behavior 1. Update copyright year range from 2024 to 2024-2026 2. Stop the tooltip show timer when clicking the stash action button 3. Ensure tooltip is closed correctly when button is clicked, preventing UI flicker Influence: 1. Verify the tooltip does not appear when clicking the stash button 2. Check that copyright text displays the correct year range 3. Test repeated clicks on the stash button to ensure no UI flicker PMS: BUG-358821 --- panels/dock/tray/package/ActionShowStashDelegate.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/panels/dock/tray/package/ActionShowStashDelegate.qml b/panels/dock/tray/package/ActionShowStashDelegate.qml index ea3997d58..d70a90c0f 100644 --- a/panels/dock/tray/package/ActionShowStashDelegate.qml +++ b/panels/dock/tray/package/ActionShowStashDelegate.qml @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. +// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd. // // SPDX-License-Identifier: GPL-3.0-or-later @@ -99,6 +99,9 @@ AppletItemButton { } else { stashedPopup.open() } + if (toolTipShowTimer.running) { + toolTipShowTimer.stop() + } toolTip.close() }