Skip to content

Commit

Permalink
fix spelling mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
Regisle committed Aug 31, 2024
1 parent 10a807c commit 7a43140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Classes/ResizableEditControl.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ local m_min = math.min

local ResizableEditClass = newClass("ResizableEditControl", "EditControl", function(self, anchor, rect, init, prompt, filter, limit, changeFunc, lineHeight, allowZoom, clearable)
self.EditControl(anchor, rect, init, prompt, filter, limit, changeFunc, lineHeight, allowZoom, clearable)
local x, y, width, hight, minWidth, minHeight, maxWidth, maxHeight = unpack(rect)
local x, y, width, height, minWidth, minHeight, maxWidth, maxHeight = unpack(rect)
self.minHeight = minHeight or height
self.maxHeight = maxHeight or height
self.minWidth = minWidth or width
Expand Down

0 comments on commit 7a43140

Please sign in to comment.