This commit is contained in:
Kenny Shields 2014-09-02 18:57:01 -04:00
parent d4ef705ecc
commit d30dca3233

View File

@ -1940,7 +1940,14 @@ end
--]]--------------------------------------------------------- --]]---------------------------------------------------------
function newobject:SelectAll() function newobject:SelectAll()
self.alltextselected = true if not self.multiline then
if self.lines[1] ~= "" then
self.alltextselected = true
end
else
self.alltextselected = true
end
return self return self
end end