diff --git a/Basalt/objects/Textfield.lua b/Basalt/objects/Textfield.lua index 8285e82..334f256 100644 --- a/Basalt/objects/Textfield.lua +++ b/Basalt/objects/Textfield.lua @@ -685,6 +685,12 @@ return function(name) end end end, + + setSelectionColor = function(self, bg, fg) + selectionBG = bg or selectionBG + selectionFG = fg or selectionFG + return self + end, draw = function(self) if (base.draw(self)) then @@ -756,4 +762,4 @@ return function(name) } return setmetatable(object, base) -end \ No newline at end of file +end