Skip to content

Commit

Permalink
[ScreenRuler]Update default activation shortcut to resolve conflict w…
Browse files Browse the repository at this point in the history
…ith Windows Explorer built-in shortcut (#32732)
  • Loading branch information
nx-frost committed Jun 13, 2024
1 parent 2e85a14 commit fc32fe2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ class MeasureTool : public PowertoyModuleIface
{
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';
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down

0 comments on commit fc32fe2

Please sign in to comment.