We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In self.show_handles we have
if self.show_handles: dx = (r - l) / 3 dy = (b - t) / 3
versus
def classify(self, x, y): t, l, r, b = self.get_screencorners() dx = (r - l) / 4 dy = (b - t) / 4
Please adjust to the same number, either both 3 or both 4 Otherwise the displayed handles are larger than the region where you can actually grab them.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In self.show_handles we have
versus
Please adjust to the same number, either both 3 or both 4
Otherwise the displayed handles are larger than the region where you can actually grab them.
The text was updated successfully, but these errors were encountered: