diff --git a/components/lazcontrols/spinex.inc b/components/lazcontrols/spinex.inc index f763e59d3f..09f14b1299 100644 --- a/components/lazcontrols/spinex.inc +++ b/components/lazcontrols/spinex.inc @@ -483,7 +483,6 @@ begin {Disallow any key that is not a digit or - Tab, BackSpace, Cut, Paste, Copy, Undo of course should be passed onto inherited KeyPress } - inherited EditKeyPress(Key); if not (Key in (Digits + AllowedControlChars + ['-'])) then Key := #0; if (Key = '-') and IsLimited and (MinValue >= 0) then Key := #0; end;