mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
fix last pixel
This commit is contained in:
parent
42b1012e7c
commit
e4e6044198
1 changed files with 3 additions and 2 deletions
|
|
@ -1800,9 +1800,10 @@ class CreateNextPageOverlay(QtWidgets.QWidget):
|
|||
|
||||
pos_y = rect.center().y()
|
||||
left = rect.left() + offset
|
||||
right = rect.right()
|
||||
top = rect.top()
|
||||
bottom = rect.bottom()
|
||||
# Right and bootm is pixel index
|
||||
right = rect.right() + 1
|
||||
bottom = rect.bottom() + 1
|
||||
width = right - left
|
||||
height = bottom - top
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue