From 07029ff4c06729cc54e737daa5c4362048a7da5e Mon Sep 17 00:00:00 2001 From: Jaime Bernardo Date: Mon, 6 Mar 2023 22:35:59 +0000 Subject: [PATCH] [PastePlain]Set default shortcut to Ctrl+Win+Alt+V (#24599) --- src/modules/pasteplain/PastePlainModuleInterface/dllmain.cpp | 2 +- src/settings-ui/Settings.UI.Library/PastePlainProperties.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/pasteplain/PastePlainModuleInterface/dllmain.cpp b/src/modules/pasteplain/PastePlainModuleInterface/dllmain.cpp index 555e156bf613..4641c512ac5f 100644 --- a/src/modules/pasteplain/PastePlainModuleInterface/dllmain.cpp +++ b/src/modules/pasteplain/PastePlainModuleInterface/dllmain.cpp @@ -97,7 +97,7 @@ class PastePlain : public PowertoyModuleIface { 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'; diff --git a/src/settings-ui/Settings.UI.Library/PastePlainProperties.cs b/src/settings-ui/Settings.UI.Library/PastePlainProperties.cs index fc7c5c863922..5e4fcbcd1462 100644 --- a/src/settings-ui/Settings.UI.Library/PastePlainProperties.cs +++ b/src/settings-ui/Settings.UI.Library/PastePlainProperties.cs @@ -10,7 +10,7 @@ public class PastePlainProperties { 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; }