Allow cursor keys in editboxes (as mentioned in bug #153)
git-svn-id: svn://kolibrios.org@9980 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
1c69f80f04
commit
e102235346
@ -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 ;;
|
;; Distributed under terms of the GNU General Public License ;;
|
||||||
;; ;;
|
;; ;;
|
||||||
;; Written by hidnplayr@kolibrios.org ;;
|
;; Written by hidnplayr@kolibrios.org ;;
|
||||||
@ -271,6 +271,10 @@ ipcfg:
|
|||||||
je .apply
|
je .apply
|
||||||
cmp ah, 8
|
cmp ah, 8
|
||||||
je @f
|
je @f
|
||||||
|
cmp ah, 0xb0 ; left arrow
|
||||||
|
je @f
|
||||||
|
cmp ah, 0xb3 ; right arrow
|
||||||
|
je @f
|
||||||
cmp ah, '.'
|
cmp ah, '.'
|
||||||
je @f
|
je @f
|
||||||
cmp ah, '0'
|
cmp ah, '0'
|
||||||
|
Loading…
Reference in New Issue
Block a user