Skip to content

Commit

Permalink
fix: FlxUICheckBox returning always checked=false in event params (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
giuppe authored Oct 28, 2024
1 parent cb9d5db commit b94d693
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flixel/addons/ui/FlxUICheckBox.hx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class FlxUICheckBox extends FlxUIGroup implements ILabeled implements IFlxUIClic
{
params = [];
}
var nb:NamedBool = {name: "checked", value: false};
var nb:NamedBool = {name: "checked", value: checked};
params.push(nb);
return params;
}
Expand Down

0 comments on commit b94d693

Please sign in to comment.