Skip to content

Commit

Permalink
#774 Updated code to best practice.
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyLuke committed Jan 28, 2021
1 parent f8df5c8 commit 7011474
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GSE_GUI/MacroCompare.lua
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ end)

nameeditbox:SetLabel(L["New Sequence Name"])
nameeditbox:SetWidth(250)
nameeditbox:SetCallback("OnTextChanged", function()
compareframe.sequenceName = nameeditbox:GetText()
nameeditbox:SetCallback("OnTextChanged", function(obj, event, key)
compareframe.sequenceName = key
end)
--nameeditbox:SetScript("OnEditFocusLost", function()
-- editframe:SetText(string.upper(editframe:GetText()))
Expand Down

0 comments on commit 7011474

Please sign in to comment.