]> gitweb.factorcode.org Git - factor.git/commitdiff
if you're going to support shift-del, you should also support shift-ins and ctrl-ins
authorJoe Groff <arcata@gmail.com>
Sat, 20 Feb 2010 17:45:42 +0000 (09:45 -0800)
committerJoe Groff <arcata@gmail.com>
Sat, 20 Feb 2010 17:45:42 +0000 (09:45 -0800)
basis/ui/gadgets/worlds/worlds.factor

index 526fc77c5762717d17a0b6fae69fec6190dbabcf..eea2933b0461d22eaa21378e4f8c5d83efacfdae 100644 (file)
@@ -231,6 +231,8 @@ action-gestures [
 ] H{ } assoc-map-as
 H{
     { T{ key-down f { S+ } "DELETE" } [ \ cut-action send-action ] }
+    { T{ key-down f { S+ } "INSERT" } [ \ paste-action send-action ] }
+    { T{ key-down f { C+ } "INSERT" } [ \ copy-action send-action ] }
     { T{ button-down f { C+ } 1 } [ drop T{ button-down f f 3 } button-gesture ] }
     { T{ button-down f { A+ } 1 } [ drop T{ button-down f f 2 } button-gesture ] }
     { T{ button-down f { M+ } 1 } [ drop T{ button-down f f 2 } button-gesture ] }