mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-01 01:49:06 +08:00
[MouseCrosshairs]Change default shortcut (#19061)
This commit is contained in:
parent
f8c624a62d
commit
548678bf44
@ -298,7 +298,7 @@ public:
|
||||
if (!m_hotkey.modifiersMask)
|
||||
{
|
||||
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_inclusiveCrosshairsSettings = inclusiveCrosshairsSettings;
|
||||
|
@ -31,7 +31,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library
|
||||
|
||||
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");
|
||||
CrosshairsOpacity = new IntProperty(75);
|
||||
CrosshairsRadius = new IntProperty(20);
|
||||
|
Loading…
Reference in New Issue
Block a user