Skip to content

Commit

Permalink
v21.1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
xAranaktu committed Nov 22, 2020
1 parent 53d4804 commit cc07c08
Show file tree
Hide file tree
Showing 6 changed files with 1,098 additions and 2 deletions.
199 changes: 197 additions & 2 deletions source/FIFA21.CETRAINER

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions source/lua/GUI/forms/mainform/manager.lua
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,21 @@ function thisFormManager:assign_current_form_events()
self:onPaintButton(sender)
end

self.frm.PlayersTransferBtn.OnClick = function(sender)
TransferPlayersForm.show()
end

self.frm.PlayersTransferBtn.OnMouseEnter = function(sender)
self:onBtnMouseEnter(sender)
end

self.frm.PlayersTransferBtn.OnMouseLeave = function(sender)
self:onBtnMouseLeave(sender)
end

self.frm.PlayersTransferBtn.OnPaint = function(sender)
self:onPaintButton(sender)
end
end

function thisFormManager:setup(params)
Expand Down
Loading

0 comments on commit cc07c08

Please sign in to comment.