Skip to content

Commit

Permalink
put 0.785 value back (accidently removed)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianharrigan committed Aug 6, 2024
1 parent ea24048 commit 42374d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion haxe/ui/backend/heaps/FilterConverter.hx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class FilterConverter {
if (inputDropShadow.inner) { // TODO: temp
return new h2d.filter.InnerGlow(inputDropShadow.color, .1, 1, 1);
}
var dropShadow = new h2d.filter.DropShadow(inputDropShadow.distance, .1, inputDropShadow.color, inputDropShadow.alpha * 2, 1, 1, 1, true);
var dropShadow = new h2d.filter.DropShadow(inputDropShadow.distance, 0.785, inputDropShadow.color, inputDropShadow.alpha * 2, 1, 1, 1, true);
output = dropShadow;
} else if ((input is haxe.ui.filters.BoxShadow)) {
var inputDropShadow:haxe.ui.filters.BoxShadow = cast(input, haxe.ui.filters.BoxShadow);
Expand Down

0 comments on commit 42374d3

Please sign in to comment.