32 lines
935 B
Diff
32 lines
935 B
Diff
From 0ea6996cf22fa8cece850bd8ba8aaa21ad1ff845 Mon Sep 17 00:00:00 2001
|
|
From: liuxinhao <liuxinhao@kylinsec.com.cn>
|
|
Date: Wed, 10 Aug 2022 14:59:37 +0800
|
|
Subject: [PATCH 2/2] fix(account): error prompt box is added with the default
|
|
disappearance time
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
- 错误提示框在点击消失的基础之上,加入默认消失时间
|
|
|
|
Closes #I5HR61
|
|
---
|
|
plugins/account/src/widgets/kiran-tips.cpp | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/plugins/account/src/widgets/kiran-tips.cpp b/plugins/account/src/widgets/kiran-tips.cpp
|
|
index 294671d..622be54 100644
|
|
--- a/plugins/account/src/widgets/kiran-tips.cpp
|
|
+++ b/plugins/account/src/widgets/kiran-tips.cpp
|
|
@@ -82,6 +82,7 @@ KiranTips::KiranTips(QWidget *parent) : QWidget(parent),
|
|
}
|
|
});
|
|
setVisible(false);
|
|
+ setHideTimeout(3000);
|
|
}
|
|
|
|
KiranTips::~KiranTips()
|
|
--
|
|
2.33.0
|
|
|