mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix remaining spell
This commit is contained in:
parent
8ba180b570
commit
6c3bcdc0b3
5 changed files with 15 additions and 8 deletions
3
.github/actions/spelling/allow.txt
vendored
3
.github/actions/spelling/allow.txt
vendored
|
|
@ -19,4 +19,5 @@ TRAYMOUSEMESSAGE
|
|||
uninstaller
|
||||
vkcode
|
||||
winget
|
||||
workaround
|
||||
workaround
|
||||
nupkg
|
||||
|
|
|
|||
2
.github/actions/spelling/excludes.txt
vendored
2
.github/actions/spelling/excludes.txt
vendored
|
|
@ -71,4 +71,4 @@ ignore$
|
|||
\.csproj$
|
||||
\.DotSettings$
|
||||
\.targets$
|
||||
.*Test.cs$
|
||||
.*Test.cs$
|
||||
|
|
|
|||
8
.github/actions/spelling/expect.txt
vendored
8
.github/actions/spelling/expect.txt
vendored
|
|
@ -108,4 +108,10 @@ JsonRPCV2
|
|||
Softpedia
|
||||
img
|
||||
ime
|
||||
LPWStr
|
||||
LPWStr
|
||||
flowlauncher
|
||||
hotkeys
|
||||
LPW
|
||||
productversion
|
||||
requery
|
||||
Wnd
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue