13 lines
367 B
Lua
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 |