diff options
author | Nick Brassel <nick@tzarc.org> | 2023-03-31 08:41:11 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-31 08:41:11 +1100 |
commit | c3c401f91dbc50106ad18b148ba198017daf0d28 (patch) | |
tree | de7fc919a6b12d98936950fb96246eb32675788c | |
parent | b63e388692c4b14facaf696d37cd2fdccec900ff (diff) |
[QP] Fix up delta frame boundaries (#20296)
-rw-r--r-- | lib/python/qmk/painter_qgf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/qmk/painter_qgf.py b/lib/python/qmk/painter_qgf.py index 71ce1f5a02..2b8edfb04d 100644 --- a/lib/python/qmk/painter_qgf.py +++ b/lib/python/qmk/painter_qgf.py @@ -372,8 +372,8 @@ def _save(im, fp, filename): delta_descriptor = QGFFrameDeltaDescriptorV1() delta_descriptor.left = location[0] delta_descriptor.top = location[1] - delta_descriptor.right = location[0] + size[0] - delta_descriptor.bottom = location[1] + size[1] + delta_descriptor.right = location[0] + size[0] - 1 + delta_descriptor.bottom = location[1] + size[1] - 1 # Write the delta frame to the output vprint(f'{f"Frame {idx:3d} delta":26s} {fp.tell():5d}d / {fp.tell():04X}h') |