Jump to content

Feature Request: Swap ctrl+C (copy) and ctrl+shift+C (copy merged) shortcuts


Go to solution Solved by Lemonade,

Recommended Posts

I frequently press ctrl+C to copy an image and try to paste it elsewhere (not always within paint.net) only to realize I copied a single layer instead of the whole image. While this is a minor inconvenience, I would use a setting that swapped these keyboard shortcuts if it existed. Therefore, I thought I would propose this feature request because others might feel the same.

 

In lieu of this existing, I could probably create an AutoHotKey script to achieve this.

 

Thanks!

Link to comment
Share on other sites

  • Solution

Hey @tieTYT, AutoHotkey is really great tool for assigning existing or new shortcuts in Paint.net

Install Autohotkey: https://www.autohotkey.com/

Check Documentation and Tutorials while there, this is a good starting point: https://www.autohotkey.com/docs/v2/Tutorial.htm

 

1. Open AutoHotkey

2. New Script
3. Add script name, location where it will be saved and Empty or Minimal option (I choose empty) and hit Create or Edit.


A rudimentary script to swap CTRL+C and CTRL+SHIFT+C shortcuts (CTRL+C: copy merged layers and CTRL+SHIFT+C: copy layer):

; paint.net
#HotIf WinActive("paint.net")
^c::  ; Ctrl + C hotkey
{
    Send "^+c"  ; Ctrl + Shift + C
}
^+c::  ; Ctrl + Shift + C hotkey
{
    Send "^c"  ; Ctrl + C
}

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...