mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
[MouseCrosshairs]Change default shortcut (#19061)
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user