Class Icon/Symbol apperaing as a block on splash screen
J0my opened this issue ยท 17 comments
Description
When I press escape and it shows the ToxiUI splash screen, where the char name and icon/symbol and class is shown, the icon/symbol is a square like a font error. Also in the fonts changer the font for ToxiUIIcons shows up again as the font squares. In the attached screenshots you can see where the icon/symbol is displaying correctly in the armory and on the Wunderbar.
ToxiUI Status Report
Screenshots
The ToxiUIIcons
font is irrelevant here, because in the Game Menu we're using the primary - ToxiUI
font. If you have it changed then it makes sense that it's showing a square.
Can you try re-installing the addon completely fresh and let me know if the issue persists? Your profile settings will not disappear if you delete the addon.
Here is the font you requested, I had to put it in a .zip as it would not upload the font file format
I've opened the font you sent and I do see the spec icons.
The 59649
unicode also matches what's defined in code: https://github.com/Toxicom/toxiui/blob/development/Core/Profile.lua#L943
I'm very confused on why it's not working ๐
One more option I can think of is separating the spec icon from the rest of the level text and specifying the icons font for it, but that will mean I can't have it inline with the rest of the text ๐ค
Hello thanks for the reply, I have not changed the fonts they are all the defaults. I have tried reinstalling the addon and the issue has still persisted
@J0my Can you go to your WoW installation, then _retail_/Interface/AddOns/ElvUI_ToxiUI/Media/Fonts/
and attach the ToxiUI.ttf
here?
To make sure you're going to the right place, follow these instructions: https://github.com/tukui-org/ElvUI/wiki/install#open-your-battlenet-app-and-select-world-of-warcraft---then-click-on-the-options-dropdown-cogwheel-icon
@J0my Do you mind doing some additional troubleshooting? I am releasing a v6.6.8-beta.1
build with additional code and debugging added.
Can you please install these 3 AddOns:
And then also update to https://github.com/Toxicom/toxiui/releases/tag/v6.6.8-beta.1
Once you have all that in place, make sure to first /reload
in game, then follow these steps:
- Open the Game Menu
- See if the issue still persists
- Close the Game Menu
- Type
/dev
in chat - A new window should show up with various data logged there
- Send a screenshot of that
/dev
window here
Throughout all of these steps see if you're getting any errors (fatality sound) in your BugSack. This will hopefully provide me more information and help narrow down the cause.
Hello, thanks again for the replies, I have installed the 3 mods as well as the toxi beta. I followed the instructions and the issue still persists. Below is the image you requested of the /dev command. There seems to be no bugs that have occurred during all of this. I am happy to keep trying anything you need to try help solve the issue.
Alright.. let's try to do some code editing..
Can you open https://github.com/Toxicom/toxiui/blob/development/Core/Profile.lua this file on your local machine, then change
[251] = F.String.ConvertGlyph(59649), -- Death Knight Frost
to
[251] = "๎ค", -- dk frost
This way instead of converting the unicode to a glyph, we are using the glyph directly. Perhaps there's an issue with the way we handle unicode ๐ค
After that, restart your game just to be safe and see if the issue is still there.