fix connect
This commit is contained in:
parent
24aab00431
commit
3b583bf331
|
@ -23,8 +23,9 @@ function connect(object, signalsAndSlots, pushFront)
|
|||
if not object[signal] then
|
||||
object[signal] = slot
|
||||
elseif type(object[signal]) == 'function' then
|
||||
object[signal] = { object[signal], slot }
|
||||
elseif type(object[signal]) == 'table' then
|
||||
object[signal] = { object[signal] }
|
||||
end
|
||||
if type(object[signal]) == 'table' then
|
||||
if pushFront then
|
||||
table.insert(object[signal], 1, slot)
|
||||
else
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 763 B |
Binary file not shown.
Before Width: | Height: | Size: 660 B |
Binary file not shown.
Before Width: | Height: | Size: 459 B |
Binary file not shown.
Before Width: | Height: | Size: 928 B |
Binary file not shown.
Before Width: | Height: | Size: 415 B |
Loading…
Reference in New Issue