7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-20 21:11:43 +00:00

Add default paste special hotkey

Most applications will define paste special as Ctrl-Shift-V
This commit is contained in:
Seth Hillbrand 2025-01-07 16:48:02 -08:00
parent 846f6127fd
commit 954e194f77

View File

@ -265,8 +265,9 @@ TOOL_ACTION ACTIONS::unselectAll( TOOL_ACTION_ARGS()
TOOL_ACTION ACTIONS::pasteSpecial( TOOL_ACTION_ARGS()
.Name( "common.Interactive.pasteSpecial" )
.Scope( AS_GLOBAL )
.DefaultHotkey( MD_CTRL + MD_SHIFT + 'V' )
.FriendlyName( _( "Paste Special..." ) )
.Tooltip( _( "Paste item(s) from clipboard with annotation options" ) )
.Tooltip( _( "Paste item(s) from clipboard with options" ) )
.Icon( BITMAPS::paste_special ) );
TOOL_ACTION ACTIONS::duplicate( TOOL_ACTION_ARGS()