Chat box font increase

I would absolutely adore it if the developers could add a couple more options to increase the font size in the chat box.

20 & 22, please, for us blind folks.

With love,

Vylken

1 Like

Try Prat.
.

1 Like

or
Just the chatframes

/run for i=1, 10 do local f, s = _G["ChatFrame"..i]:GetFont() _G["ChatFrame"..i]:SetFont(f, 22)  end

chatframes + editbox

/run for i=1, 10 do local f, s = _G["ChatFrame"..i]:GetFont() _G["ChatFrame"..i]:SetFont(f, 22) if _G["ChatFrame"..i].editBox then _G["ChatFrame"..i].editBox:SetFont(f, 22) end end

But Prat has more options beside this for making chat better.

1 Like

Where do I type the code into in-game?

  • You can just copy/paste it to your chat like you would /say
  • Or you could put it in a macro and add that to your button bar.
  • Or you could paste everything but the /run to:

https://addon.bool.no/

This will make a small addon you can download/install like any addon and the code will run automatically when you log in. (I suggest getting the correct size you want the text to be (by increassing/decreassing the 22) using the first method before doing this).

Awesome. Thank you!