[PastePlain]Set default shortcut to Ctrl+Win+Alt+V (#24599)

This commit is contained in:
Jaime Bernardo 2023-03-06 22:35:59 +00:00 committed by GitHub
parent 8947cddf95
commit 07029ff4c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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';

View File

@ -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; }