mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-22 08:53:08 +08:00
[PastePlain]Set default shortcut to Ctrl+Win+Alt+V (#24599)
This commit is contained in:
parent
8947cddf95
commit
07029ff4c0
@ -97,7 +97,7 @@ private:
|
||||
{
|
||||
Logger::info("PastePlain is going to use default shortcut");
|
||||
m_hotkey.win = true;
|
||||
m_hotkey.alt = false;
|
||||
m_hotkey.alt = true;
|
||||
m_hotkey.shift = false;
|
||||
m_hotkey.ctrl = true;
|
||||
m_hotkey.key = 'V';
|
||||
|
@ -10,7 +10,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library
|
||||
{
|
||||
public PastePlainProperties()
|
||||
{
|
||||
ActivationShortcut = new HotkeySettings(true, true, false, false, 0x56); // Ctrl+Win+V
|
||||
ActivationShortcut = new HotkeySettings(true, true, true, false, 0x56); // Ctrl+Win+Alt+V
|
||||
}
|
||||
|
||||
public HotkeySettings ActivationShortcut { get; set; }
|
||||
|
Loading…
Reference in New Issue
Block a user