Skip to content
Snippets Groups Projects
Commit f5ebd9da authored by Daniel Brötzmann's avatar Daniel Brötzmann Committed by Philipp Hörist
Browse files

AvatarSelector: Fix pipeline

parent 999f6e9b
No related branches found
No related tags found
No related merge requests found
......@@ -231,7 +231,7 @@ def get_pixbuf(self):
width = min(self._crop.width, width - self._crop.x)
height = min(self._crop.height, height - self._crop.y)
if width <= 0 or height <=0:
if width <= 0 or height <= 0:
return None
return GdkPixbuf.Pixbuf.new_subpixbuf(
......@@ -661,7 +661,7 @@ def _eval_radial_line(center_x, center_y, bounds_x, bounds_y, user_x):
# Prevent division by zero
return 0
decision_slope = float(bounds_y - center_y) / (bounds_x - center_x)
decision_slope = slope_y / slope_x
decision_intercept = - float(decision_slope * bounds_x)
return int(decision_slope * user_x + decision_intercept)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment