mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix more spellcheck
This commit is contained in:
parent
01bbe8f92d
commit
8ba180b570
6 changed files with 22 additions and 9 deletions
15
.github/actions/spelling/allow.txt
vendored
15
.github/actions/spelling/allow.txt
vendored
|
|
@ -6,4 +6,17 @@ runcount
|
|||
nunit
|
||||
velopack
|
||||
vpk
|
||||
vsc
|
||||
vsc
|
||||
appveyor
|
||||
appwrite
|
||||
IME
|
||||
hotkey
|
||||
prioritise
|
||||
runas
|
||||
softpedia
|
||||
sourcelink
|
||||
TRAYMOUSEMESSAGE
|
||||
uninstaller
|
||||
vkcode
|
||||
winget
|
||||
workaround
|
||||
|
|
@ -100,7 +100,7 @@ namespace Flow.Launcher.Core.Configuration
|
|||
var portableDataDeleteFilePath = Path.Combine(portableDataDir, DataLocation.DeletionIndicatorFile);
|
||||
var roamingDataDeleteFilePath = Path.Combine(roamingDataDir, DataLocation.DeletionIndicatorFile);
|
||||
|
||||
// If the data folder in %appdata% is marked for deletion,
|
||||
// If the data folder in %AppData% is marked for deletion,
|
||||
// delete it and prompt the user to pick the portable data location
|
||||
if (File.Exists(roamingDataDeleteFilePath))
|
||||
{
|
||||
|
|
|
|||
|
|
@ -71,8 +71,8 @@ namespace Flow.Launcher.Plugin.SharedCommands
|
|||
// Recursively copy subdirectories by calling itself on each subdirectory until there are no more to copy
|
||||
foreach (DirectoryInfo subDir in dirs)
|
||||
{
|
||||
string temppath = Path.Combine(targetPath, subDir.Name);
|
||||
CopyAll(subDir.FullName, temppath);
|
||||
string tempPath = Path.Combine(targetPath, subDir.Name);
|
||||
CopyAll(subDir.FullName, tempPath);
|
||||
}
|
||||
}
|
||||
catch (Exception)
|
||||
|
|
|
|||
|
|
@ -184,8 +184,8 @@ namespace Flow.Launcher
|
|||
|
||||
public void Dispose()
|
||||
{
|
||||
// if sessionending is called, exit proverbially be called when log off / shutdown
|
||||
// but if sessionending is not called, exit won't be called when log off / shutdown
|
||||
// if session-ending is called, exit proverbially be called when log off / shutdown
|
||||
// but if session-ending is not called, exit won't be called when log off / shutdown
|
||||
if (!_disposed)
|
||||
{
|
||||
API.SaveAppAllSettings();
|
||||
|
|
|
|||
|
|
@ -311,7 +311,7 @@ namespace Flow.Launcher.Helper
|
|||
catch (NotSupportedException)
|
||||
{
|
||||
// The application was clickonce deployed
|
||||
// Clickonce deployed apps cannot recieve traditional command line arguments
|
||||
// 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
|
||||
|
|
|
|||
|
|
@ -315,12 +315,12 @@ namespace Flow.Launcher
|
|||
|
||||
#region Private Methods
|
||||
|
||||
private bool KListener_hookedKeyboardCallback(KeyEvent keyevent, int vkcode, SpecialKeyState state)
|
||||
private bool KListener_hookedKeyboardCallback(KeyEvent keyEvent, int vkCode, SpecialKeyState state)
|
||||
{
|
||||
var continueHook = true;
|
||||
foreach (var x in _globalKeyboardHandlers)
|
||||
{
|
||||
continueHook &= x((int)keyevent, vkcode, state);
|
||||
continueHook &= x((int)keyEvent, vkCode, state);
|
||||
}
|
||||
|
||||
return continueHook;
|
||||
|
|
|
|||
Loading…
Reference in a new issue