Skip to content

Commit

Permalink
Merge pull request #142 from emfcamp/bugfix/text-input-contrast
Browse files Browse the repository at this point in the history
Improve contrast on text input by darkening overlay
  • Loading branch information
MatthewWilkes authored Jun 16, 2024
2 parents d4bda9c + 500fa16 commit 52cbadc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/app_components/dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def draw_message(self, ctx):

def draw(self, ctx):
ctx.save()
ctx.rgba(0, 0, 0, 0.5)
ctx.rgba(0, 0, 0, 0.8)
display.hexagon(ctx, 0, 0, 120)

self.draw_message(ctx)
Expand Down

0 comments on commit 52cbadc

Please sign in to comment.