Set default shortcut for activating launcher, creating settings.json … (#5206)

* Set default shortcut for activating launcher, creating settings.json on a start if it does not exists

* After review fixes
This commit is contained in:
martinchrzan
2020-07-25 08:50:29 +02:00
committed by GitHub
parent d7721065dc
commit 5a2385c66b
2 changed files with 19 additions and 4 deletions

View File

@@ -46,7 +46,7 @@ namespace Microsoft.PowerToys.Settings.UI.Lib
public PowerLauncherProperties()
{
OpenPowerLauncher = new HotkeySettings();
OpenPowerLauncher = new HotkeySettings(false, false, true, false, 32);
OpenFileLocation = new HotkeySettings();
CopyPathLocation = new HotkeySettings();
OpenConsole = new HotkeySettings();
@@ -55,6 +55,7 @@ namespace Microsoft.PowerToys.Settings.UI.Lib
IgnoreHotkeysInFullscreen = false;
DisableDriveDetectionWarning = false;
ClearInputOnLaunch = false;
MaximumNumberOfResults = 4;
}
}
}