mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-21 15:53:19 +00:00
[ScreenRuler]Update default activation shortcut to resolve conflict with Windows Explorer built-in shortcut (#32732)
This commit is contained in:
parent
2e85a14e72
commit
fc32fe29ba
@ -82,9 +82,9 @@ private:
|
||||
{
|
||||
Logger::info("MeasureTool is going to use default shortcut");
|
||||
m_hotkey.win = true;
|
||||
m_hotkey.ctrl = true;
|
||||
m_hotkey.alt = false;
|
||||
m_hotkey.shift = true;
|
||||
m_hotkey.ctrl = false;
|
||||
m_hotkey.key = 'M';
|
||||
}
|
||||
}
|
||||
|
@ -12,7 +12,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library
|
||||
public class MeasureToolProperties
|
||||
{
|
||||
[CmdConfigureIgnore]
|
||||
public HotkeySettings DefaultActivationShortcut => new HotkeySettings(true, false, false, true, 0x4D);
|
||||
public HotkeySettings DefaultActivationShortcut => new HotkeySettings(true, true, false, true, 0x4D);
|
||||
|
||||
public MeasureToolProperties()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user