URI: 
       Fixed FKey mapping - icy_draw - icy_draw is the successor to mystic draw. fork / mirror
  HTML git clone https://git.drkhsh.at/icy_draw.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit aec959633527307d86c0b4ab5aad6003a5ce8b6a
   DIR parent 2f7568b7261a29c785a2cd0cc3ba518c64d08a3a
  HTML Author: Mike Krüger <mkrueger@posteo.de>
       Date:   Mon, 18 Sep 2023 21:49:08 +0200
       
       Fixed FKey mapping
       
       Diffstat:
         M src/ui/editor/ansi/mod.rs           |      13 +++++++++++++
       
       1 file changed, 13 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/src/ui/editor/ansi/mod.rs b/src/ui/editor/ansi/mod.rs
       @@ -831,4 +831,17 @@ pub static ANSI_KEY_MAP: &[(u32, MKey)] = &[
            (Key::ArrowDown as u32, MKey::Down),
            (Key::ArrowRight as u32, MKey::Right),
            (Key::ArrowLeft as u32, MKey::Left),
       +    (Key::F1 as u32, MKey::F1),
       +    (Key::F2 as u32, MKey::F2),
       +    (Key::F3 as u32, MKey::F3),
       +    (Key::F4 as u32, MKey::F4),
       +    (Key::F5 as u32, MKey::F5),
       +    (Key::F6 as u32, MKey::F6),
       +    (Key::F7 as u32, MKey::F7),
       +    (Key::F8 as u32, MKey::F8),
       +    (Key::F9 as u32, MKey::F9),
       +    (Key::F10 as u32, MKey::F10),
       +    (Key::F11 as u32, MKey::F11),
       +    (Key::F12 as u32, MKey::F12),
       +    
        ];