mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
[PastePlain]Set default shortcut to Ctrl+Win+Alt+V (#24599)
This commit is contained in:
@@ -97,7 +97,7 @@ private:
|
|||||||
{
|
{
|
||||||
Logger::info("PastePlain is going to use default shortcut");
|
Logger::info("PastePlain is going to use default shortcut");
|
||||||
m_hotkey.win = true;
|
m_hotkey.win = true;
|
||||||
m_hotkey.alt = false;
|
m_hotkey.alt = true;
|
||||||
m_hotkey.shift = false;
|
m_hotkey.shift = false;
|
||||||
m_hotkey.ctrl = true;
|
m_hotkey.ctrl = true;
|
||||||
m_hotkey.key = 'V';
|
m_hotkey.key = 'V';
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library
|
|||||||
{
|
{
|
||||||
public 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; }
|
public HotkeySettings ActivationShortcut { get; set; }
|
||||||
|
|||||||
Reference in New Issue
Block a user