🐛 防止点击关闭搜索框后打开列表项目

This commit is contained in:
BookerLiu
2023-04-19 16:51:56 +08:00
parent 9de5a19f7f
commit 08424b0db0
4 changed files with 18 additions and 2 deletions

View File

@@ -126,6 +126,8 @@ namespace GeekDesk.Control.UserControls.PannelCard
/// <param name="e"></param>
private void IconClick(object sender, MouseButtonEventArgs e)
{
if (!RunTimeStatus.SEARCH_BOX_HIDED_300) return;
if (appData.AppConfig.DoubleOpen && e.ClickCount >= 2)
{
IconInfo icon = (IconInfo)((Panel)sender).Tag;