1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 10:30:36 +00:00

Fix stubborn textfield not letting you edit font size (Display dialog).

This commit is contained in:
FellippeHeitor 2016-07-31 20:36:34 -03:00
parent 2e89bed958
commit 073ab7e790

View file

@ -10829,7 +10829,7 @@ FUNCTION idedisplaybox
IF a < 48 OR a > 57 THEN a$ = "": EXIT FOR
IF i = 2 AND ASC(a$, 1) = 48 THEN a$ = "0": EXIT FOR
NEXT
IF focus <> 5 THEN
IF focus <> 6 THEN
IF LEN(a$) THEN a = VAL(a$) ELSE a = 0
IF a < 8 THEN a$ = "8"
END IF