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");
|
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';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user