Skip to content

Commit

Permalink
Removed unused branch
Browse files Browse the repository at this point in the history
  • Loading branch information
proneon267 committed Jun 8, 2024
1 parent dbe7b42 commit 3054df1
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions winforms/src/toga_winforms/colors.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@ def native_color(c):


def toga_color(c):
if c == Color.Transparent:
return TRANSPARENT
else:
return rgba(c.R, c.G, c.B, c.A / 255)
return rgba(c.R, c.G, c.B, c.A / 255)


def alpha_blending_over_operation(front_color, back_color):
Expand Down

0 comments on commit 3054df1

Please sign in to comment.