bugfix: utf-8
Dependencies
- [2]
KKMFQDR4editing source code from within the app - [3]
IMEJA43Lsnapshot - [4]
356GY7IQunify two similar functions - [5]
ISOFHXB2App.width can no longer take a Text - [6]
G3DLS5OUaudit all asserts - [7]
GL4Q5WCVkeep text from overflowing right margin - [8]
VSBSWTE4bugfix: where cursor is drawn - [*]
BULPIBEGbeginnings of a module for the text editor
Change contents
- replacement in text.lua at line 848
local offset = Text.offset(s, math.min(pos+1, #s+1))local len = utf8.len(s)local offset = Text.offset(s, math.min(pos+1, len+1)) - replacement in source_text.lua at line 910
local offset = Text.offset(s, math.min(pos+1, #s+1))local len = utf8.len(s)local offset = Text.offset(s, math.min(pos+1, len+1))