We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc674f0 commit 6f27d76Copy full SHA for 6f27d76
1 file changed
src/Plugins/CurvaLauncher.Plugins.Everything/EverythingSearchClient/MessageReceiverWindow.cs
@@ -448,7 +448,7 @@ private void EnsureWindowClassRegistered(IntPtr hInst)
448
449
ushort atom = RegisterClassExW(ref wcex);
450
int ec = Marshal.GetLastWin32Error();
451
- if (atom == 0)
+ if (ec != 1410 && atom == 0)
452
{
453
throw new Exception($"Failed to register response message-only window class {ec}");
454
}
0 commit comments