fix remaining spell

This commit is contained in:
Hongtao Zhang 2024-03-29 12:53:13 -05:00
parent 8ba180b570
commit 6c3bcdc0b3
5 changed files with 15 additions and 8 deletions

View file

@ -19,4 +19,5 @@ TRAYMOUSEMESSAGE
uninstaller
vkcode
winget
workaround
workaround
nupkg

View file

@ -71,4 +71,4 @@ ignore$
\.csproj$
\.DotSettings$
\.targets$
.*Test.cs$
.*Test.cs$

View file

@ -108,4 +108,10 @@ JsonRPCV2
Softpedia
img
ime
LPWStr
LPWStr
flowlauncher
hotkeys
LPW
productversion
requery
Wnd

View file

@ -305,13 +305,13 @@ namespace Flow.Launcher.Helper
try
{
// The application was not clickonce deployed, get args from standard API's
// The application was not ClickOnce deployed, get args from standard API's
args = Environment.GetCommandLineArgs();
}
catch (NotSupportedException)
{
// The application was clickonce deployed
// Clickonce deployed apps cannot receive traditional command line arguments
// The application was ClickOnce deployed
// ClickOnce deployed apps cannot receive traditional command line arguments
// As a workaround command line arguments can be written to a shared location before
// the app is launched and the app can obtain its command line arguments from the
// shared location

View file

@ -40,7 +40,7 @@ namespace Flow.Launcher
_settingsVM = settingsVM;
_mainVM = mainVM;
_alphabet = alphabet;
GlobalHotkey.hookedKeyboardCallback = KListener_hookedKeyboardCallback;
GlobalHotkey.hookedKeyboardCallback = KListenerHookedKeyboardCallback;
WebRequest.RegisterPrefix("data", new DataWebRequestFactory());
}
@ -315,7 +315,7 @@ namespace Flow.Launcher
#region Private Methods
private bool KListener_hookedKeyboardCallback(KeyEvent keyEvent, int vkCode, SpecialKeyState state)
private bool KListenerHookedKeyboardCallback(KeyEvent keyEvent, int vkCode, SpecialKeyState state)
{
var continueHook = true;
foreach (var x in _globalKeyboardHandlers)