[MouseCrosshairs]Change default shortcut (#19061)

This commit is contained in:
Jaime Bernardo
2022-06-28 14:30:25 +01:00
committed by GitHub
parent f8c624a62d
commit 548678bf44
2 changed files with 2 additions and 2 deletions

View File

@@ -298,7 +298,7 @@ public:
if (!m_hotkey.modifiersMask) if (!m_hotkey.modifiersMask)
{ {
Logger::info("Mouse Pointer Crosshairs is going to use default shortcut"); Logger::info("Mouse Pointer Crosshairs is going to use default shortcut");
m_hotkey.modifiersMask = MOD_CONTROL | MOD_ALT; m_hotkey.modifiersMask = MOD_WIN | MOD_ALT;
m_hotkey.vkCode = 0x50; // P key m_hotkey.vkCode = 0x50; // P key
} }
m_inclusiveCrosshairsSettings = inclusiveCrosshairsSettings; m_inclusiveCrosshairsSettings = inclusiveCrosshairsSettings;

View File

@@ -31,7 +31,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library
public MousePointerCrosshairsProperties() public MousePointerCrosshairsProperties()
{ {
ActivationShortcut = new HotkeySettings(false, true, true, false, 0x50); // Ctrl + Alt + P ActivationShortcut = new HotkeySettings(true, false, true, false, 0x50); // Win + Alt + P
CrosshairsColor = new StringProperty("#FF0000"); CrosshairsColor = new StringProperty("#FF0000");
CrosshairsOpacity = new IntProperty(75); CrosshairsOpacity = new IntProperty(75);
CrosshairsRadius = new IntProperty(20); CrosshairsRadius = new IntProperty(20);