Skip to content

Commit

Permalink
Fix Ctrl+C, Ctrl+V to appear on context menu (edbee#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
vadi2 authored and gamecreature committed Oct 7, 2017
1 parent 48d19ba commit ad41d70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions edbee-lib/edbee/data/factorykeymap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ void FactoryKeyMap::fill( TextEditorKeyMap* km )
add( "soft_redo", "Ctrl+Shift+U" );

// clipboard operations
add( "copy", "Ctrl+Insert" );
add( "paste", "Shift+Insert" );

add( "copy", "copy" );
add( "cut", "cut" );
add( "paste", "paste" );

add( "copy", "Ctrl+Insert" );
add( "paste", "Shift+Insert" );

// debug commands
add( "debug_dump_scopes", "Ctrl+Shift+X,S" );
add( "debug_rebuild_scopes", "Ctrl+Shift+X,R" );
Expand Down

0 comments on commit ad41d70

Please sign in to comment.