1
0
mirror of https://github.com/LDDestroier/CC/ synced 2025-09-07 05:18:01 +00:00

Fixed copying empty lines...

This commit is contained in:
LDDestroier
2019-03-29 20:54:51 -04:00
committed by GitHub
parent fb7becd17b
commit 67e90b6237

View File

@@ -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