From e10223534686cc38f255d83805f4036ab359735f Mon Sep 17 00:00:00 2001 From: hidnplayr Date: Fri, 23 Feb 2024 21:37:26 +0000 Subject: [PATCH] Allow cursor keys in editboxes (as mentioned in bug #153) git-svn-id: svn://kolibrios.org@9980 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/network/netstat/ipcfg.inc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/programs/network/netstat/ipcfg.inc b/programs/network/netstat/ipcfg.inc index ebe7870d1c..2c2de6a995 100644 --- a/programs/network/netstat/ipcfg.inc +++ b/programs/network/netstat/ipcfg.inc @@ -1,6 +1,6 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;; -;; Copyright (C) KolibriOS team 2010-2016. All rights reserved. ;; +;; Copyright (C) KolibriOS team 2010-2024. All rights reserved. ;; ;; Distributed under terms of the GNU General Public License ;; ;; ;; ;; Written by hidnplayr@kolibrios.org ;; @@ -271,6 +271,10 @@ ipcfg: je .apply cmp ah, 8 je @f + cmp ah, 0xb0 ; left arrow + je @f + cmp ah, 0xb3 ; right arrow + je @f cmp ah, '.' je @f cmp ah, '0'