Skip to content

Commit

Permalink
[PastePlain]Set default shortcut to Ctrl+Win+Alt+V (microsoft#24599)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimecbernardo authored Mar 6, 2023
1 parent 8947cdd commit 07029ff
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 @@ -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';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down

0 comments on commit 07029ff

Please sign in to comment.