Not fully sure which chat mod does change the size of the edit box. I think it was Chatter, but if not try test out a couple of the chat mods to see which has setting to change it.
That mod looks like it makes its own editbox. Since Acegui already has an edit box. I'm just trying to use that and modify it a little. Surprised no one here can tell me why the above code fails to add more than 4 lines.
trying to use a custom control to change the default size of the editbox, but its not working. Any ideas?
local function MultiLineEditBoxConstructor()
local Widget = AceGUI:Create('MultiLineEditBox')
Widget.type = MultiLineEditBoxWidgetType
Widget:SetNumLines(20)
return AceGUI:RegisterAsWidget(Widget)
end
AceGUI:RegisterWidgetType(MultiLineEditBoxWidgetType, MultiLineEditBoxConstructor, MultiLineEditBoxWidgetVersion)
Not fully sure which chat mod does change the size of the edit box. I think it was Chatter, but if not try test out a couple of the chat mods to see which has setting to change it.
Cheers!
HOME OF THE FREE, BECAUSE OF THE BRAVE
That mod looks like it makes its own editbox. Since Acegui already has an edit box. I'm just trying to use that and modify it a little. Surprised no one here can tell me why the above code fails to add more than 4 lines.
Thanks though
Got the help I needed, issue resolved