You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for posting the full Skillet-Classic frame this time. The issue only occurs when the Grouping is set to Flat.
Please change line 1119 in MainFrame.lua as shown below and let me know if that fixes it.
+++ D:/World of Warcraft/_classic_/Interface/AddOns/Skillet-Classic/UI/MainFrame.lua Sun Jul 14 16:11:45 2024
@@ -1116,7 +1116,7 @@
suffixText:Hide()
skillRankBar:Hide()
if self.db.profile.display_required_level or self.db.profile.display_item_level then
- levelText:SetWidth(skill.depth*8+20)
+ levelText:SetWidth(math.max(skill.depth*8+20,28))
else
levelText:SetWidth(skill.depth*8)
end
Item level is not displayed fully in the skillet window when it is more than 2 digits long.
The text was updated successfully, but these errors were encountered: