From bb6a6f36641a527dbc8f8a68ae0fd5cf42f9d6e5 Mon Sep 17 00:00:00 2001 From: ww-rm Date: Sun, 20 Apr 2025 17:26:26 +0800 Subject: [PATCH] small change --- SpineViewer/Forms/WallpaperForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SpineViewer/Forms/WallpaperForm.cs b/SpineViewer/Forms/WallpaperForm.cs index cdef080..01bc2af 100644 --- a/SpineViewer/Forms/WallpaperForm.cs +++ b/SpineViewer/Forms/WallpaperForm.cs @@ -28,7 +28,7 @@ namespace SpineViewer get { var cp = base.CreateParams; - cp.ExStyle = Win32.WS_EX_TOOLWINDOW | Win32.WS_EX_LAYERED; + cp.ExStyle |= Win32.WS_EX_TOOLWINDOW | Win32.WS_EX_LAYERED; return cp; } }