Files
ShaguTweaks-ClassicAPI/mods/smaller-errors-frame.lua
T
2026-08-14 14:58:33 +02:00

13 lines
367 B
Lua

local T = ShaguTweaks.T
local module = ShaguTweaks:register({
title = T["Smaller Error Frame"],
description = T["Resizes the error frame to 1 line instead of 3."],
expansions = { ["vanilla"] = true },
category = T["General"],
enabled = nil,
})
module.enable = function(self)
UIErrorsFrame:SetHeight(UIErrorsFrame:GetHeight() / 3)
end