mirror of
https://github.com/LDDestroier/CC/
synced 2025-05-04 16:04:05 +00:00
Fixed copying empty lines...
This commit is contained in:
parent
fb7becd17b
commit
67e90b6237
@ -1015,7 +1015,7 @@ prompt = function(prebuffer, precy, maxY, _eldit)
|
|||||||
sortSelections()
|
sortSelections()
|
||||||
local id, selY
|
local id, selY
|
||||||
for y = 1, #eldit.buffer do
|
for y = 1, #eldit.buffer do
|
||||||
for x = 1, #eldit.buffer[y] do
|
for x = 1, #eldit.buffer[y] + 1 do
|
||||||
id = checkIfSelected(x, y)
|
id = checkIfSelected(x, y)
|
||||||
if id then
|
if id then
|
||||||
selY = y - eldit.selections[id][1].y + 1
|
selY = y - eldit.selections[id][1].y + 1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user