View Single Post
02-23-21, 04:07 PM   #4
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,879
Your macro is doing 4 SetPoint calls for the editbox. Maybe something like:

Lua Code:
  1. ChatFrame1EditBox:SetMultiLine(true)
  2. ChatFrame1EditBox:ClearAllPoints()
  3. ChatFrame1EditBox:SetPoint("BOTTOMLEFT", UIParent)
  4. ChatFrame1EditBox:SetPoint("BOTTOMRIGHT", UIParent, "BOTTOMLEFT", 250, 0)

The box should resize as you type more lines. It's been a while since I played with this.

You should be able to place this in your main.lua file.
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.
  Reply With Quote