We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13656d1 commit 277171dCopy full SHA for 277171d
Flow.Launcher.Infrastructure/QuickSwitch/Models/WindowsDialog.cs
@@ -40,7 +40,7 @@ static unsafe string GetClassName(HWND handle)
40
{
41
return PInvoke.GetClassName(handle, buf, 256) switch
42
43
- 0 => null,
+ 0 => string.Empty,
44
_ => new string(buf),
45
};
46
}
@@ -91,6 +91,7 @@ public string GetCurrentFile()
91
92
public bool OpenFolder(string path)
93
94
+ // TODO
95
return false;
96
97
0 commit comments