Rematch addon - Is there a way to change font size on team notes?

Regarding the Rematch addon - does anyone know if there is a way to change font size on team notes? I’ve looked at all the info in the addon, and went to CurseForge and cant find anything.

For those unfamiliar with Recount, its an addon to manage all your pet battle teams for things such as doing daily pet battles in Tanaan Jungle.

https://www.curseforge.com/wow/addons/rematch

Unfortunately it doesn’t look like it’s something you can do from the interface menu. I know you can with the tdScripts, but it doesn’t look Rematch has any options for it there, or in the options tab in the UI.

However, if someone with more know-how sees this, they might be able to point you to where in the addon files on your computer the font portion is, and help you change it that way. It seems like that may be your only option.

2 Likes

I missed this one sorry. Did you want the notes font smaller or larger?

If you copy the following into https://addon.bool.no/ it will make a small addon to make the notes text smaller.

C_Timer.After(1,function()
    if RematchNotes then
        RematchNotes.Content.ScrollFrame.EditBox:SetFontObject("GameFontHighlightSmall")
    end
end)

To make the notes bigger, change GameFontHighlightSmall to GameFontHighlightLarge.

edit: Just checked and https://addon.bool.no/ is not updated for 9.2.5 client, so you’d need to load out of date addons until it’s fixed and the addon regenerated. (Or if you’re comfortable with it, change the ## Interface from 90200 to 90205.)

7 Likes

Thank you so much for this! I want to increase the font size, I’m hopeful this will work :slight_smile:

1 Like

For anyone who uses the above to change notes size, an update today adds an option (at the end of Pet Card & Notes Options) that will override the above code to set your preferred size:

If you made a little addon with the snippet of code from above, you can delete it and then change the size from within the addon.

6 Likes

Thank you very much Gello :slight_smile: