Skip to content

Commit f84ea84

Browse files
committed
兼容腾讯桌面
1 parent b727416 commit f84ea84

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

LiveWallpaper/AppContext.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,9 @@ private async void CheckMutex()
5353
{
5454
try
5555
{
56-
_mutex = new Mutex(true, "Livewallpaper", out bool ret);
57-
56+
//_mutex = new Mutex(true, "Livewallpaper", out bool ret);
57+
//兼容腾讯桌面,曲线救国...
58+
_mutex = new Mutex(true, "cxWallpaperEngineGlobalMutex", out bool ret);
5859
if (!ret)
5960
{
6061
_notifyIcon.ShowBalloonTip(5, await GetText("common.information"), await GetText("client.started"), ToolTipIcon.Info);

0 commit comments

Comments
 (0)