Missing changes for multiline text

This commit is contained in:
Eduardo Bart 2015-06-03 10:59:28 -03:00
parent 0c1540e531
commit 02c6b1b6c7
1 changed files with 4 additions and 1 deletions

View File

@ -113,7 +113,10 @@ function init()
local tab = consoleTabBar:getCurrentTab() local tab = consoleTabBar:getCurrentTab()
if not tab then return false end if not tab then return false end
g_window.setClipboardText(selectioText) local selection = tab.tabPanel:getChildById('consoleBuffer').selectionText
if not selection then return false end
g_window.setClipboardText(selection)
return true return true
end end