Skip to content

fix: moving the bottom corners up on the round rect by one pixel #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions adafruit_ra8875/ra8875.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2019 Melissa LeBlanc-Williams for Adafruit Industries

Check failure on line 1 in adafruit_ra8875/ra8875.py

View workflow job for this annotation

GitHub Actions / test

reformatted
#
# SPDX-License-Identifier: MIT

Expand Down Expand Up @@ -850,10 +850,10 @@
x + width - radius - 1, y + radius, radius, radius, 2, color, True
)
self._curve_helper(
x + radius, y + height - radius, radius, radius, 0, color, True
x + radius, y + height - radius - 1, radius, radius, 0, color, True
)
self._curve_helper(
x + width - radius - 1, y + height - radius, radius, radius, 3, color, True
x + width - radius - 1, y + height - radius - 1, radius, radius, 3, color, True
)
self._rect_helper(
x + radius, y, x + width - radius - 1, y + height - 1, color, True
Expand Down
Loading