add args to some functions
[?]
Jul 8, 2022, 10:37 PM
CTJ3IZGSPY4DBHC6OYNL4DZE24MXYQBM3KVJZTQHM5DI5TED5ZLQCDependencies
- [2]
EMRPLZPWdrop an arg from a function - [3]
MGOQ5XAVstart uppercasing globals - [4]
3GFQP6IRstop saving the entire file when modifying drawings - [5]
CCYSVZA2bugfix: BSOD in #4. - [6]
QZH3PQFU. - [7]
DLQMM265scroll past first page - [8]
HYEAFRZ2split mouse_pressed events between Text and Drawing - [9]
ZUOL7X6Vmove - [10]
LAW2O3NWextract variable Margin_left - [11]
BOFNXP5Gclicking now moves the cursor even on long, wrapped lines - [12]
R22PA3XRfix a second BSOD in #4 :/ - [13]
RMKMPFT5fix a corner case when selecting text - [14]
LXTTOB33extract a couple of files - [15]
DXT4QTAHa few more integer coordinates - [16]
AQQQNDTLyet another bugfix in selection management - [17]
4CXVIEBSadd args to some functions - [18]
3OKKTUT4up and down arrow now moving by screen line where possible - [19]
6E3HVYWFtest and App helper for mouse clicks - [20]
2ENZW7TVselect text using mouse drag - [21]
OGUV4HSAremove some memory leaks from rendered fragments - [22]
242L3OQXbugfix: ensure Cursor_line is always on a text line - [23]
FYS7TCDWbugfix - [24]
2INHXC3Kposition cursor by clicking on text - [25]
MYC7XR5Qbugfix: lines that aren't drawn from the start - [26]
7IKRRESBlonger names for indices in long loops - [*]
BULPIBEGbeginnings of a module for the text editor - [*]
OTIBCAUJlove2d scaffold
Change contents
- replacement in text.lua at line 666
function Text.in_line(line, x,y)function Text.in_line(line, x,y, left,right) - replacement in text.lua at line 668
if x < Margin_left then return false endif x < left then return false end - replacement in select.lua at line 98
if Text.in_line(line, x,y) thenif Text.in_line(line, x,y, left, right) then - replacement in main.lua at line 341
if Text.in_line(line, x,y) thenif Text.in_line(line, x,y, Margin_left, App.screen.width-Margin_right) then - replacement in main.lua at line 385
if Text.in_line(line, x,y) thenif Text.in_line(line, x,y, Margin_left, App.screen.width-Margin_right) then