From f84ea84ca3a17bf8441dadc19ab105db89667d5b Mon Sep 17 00:00:00 2001 From: DaZiYuan Date: Thu, 3 Jun 2021 18:19:53 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=BC=E5=AE=B9=E8=85=BE=E8=AE=AF=E6=A1=8C?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LiveWallpaper/AppContext.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/LiveWallpaper/AppContext.cs b/LiveWallpaper/AppContext.cs index cb3b344a..2fb8f395 100644 --- a/LiveWallpaper/AppContext.cs +++ b/LiveWallpaper/AppContext.cs @@ -53,8 +53,9 @@ private async void CheckMutex() { try { - _mutex = new Mutex(true, "Livewallpaper", out bool ret); - + //_mutex = new Mutex(true, "Livewallpaper", out bool ret); + //兼容腾讯桌面,曲线救国... + _mutex = new Mutex(true, "cxWallpaperEngineGlobalMutex", out bool ret); if (!ret) { _notifyIcon.ShowBalloonTip(5, await GetText("common.information"), await GetText("client.started"), ToolTipIcon.Info);