[ScreenRuler]Update default activation shortcut to resolve conflict with Windows Explorer built-in shortcut (#32732)

This commit is contained in:
nx-frost 2024-06-13 10:27:07 -06:00 committed by GitHub
parent 2e85a14e72
commit fc32fe29ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -82,9 +82,9 @@ private:
{ {
Logger::info("MeasureTool is going to use default shortcut"); Logger::info("MeasureTool is going to use default shortcut");
m_hotkey.win = true; m_hotkey.win = true;
m_hotkey.ctrl = true;
m_hotkey.alt = false; m_hotkey.alt = false;
m_hotkey.shift = true; m_hotkey.shift = true;
m_hotkey.ctrl = false;
m_hotkey.key = 'M'; m_hotkey.key = 'M';
} }
} }

View File

@ -12,7 +12,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library
public class MeasureToolProperties public class MeasureToolProperties
{ {
[CmdConfigureIgnore] [CmdConfigureIgnore]
public HotkeySettings DefaultActivationShortcut => new HotkeySettings(true, false, false, true, 0x4D); public HotkeySettings DefaultActivationShortcut => new HotkeySettings(true, true, false, true, 0x4D);
public MeasureToolProperties() public MeasureToolProperties()
{ {