From d443a3c2509889533ca812c163056bace396b586 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 14 Jun 2023 20:35:58 +0200 Subject: New upstream version 0.32.1 --- src/editing_tools/StraightenTool.vala | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/editing_tools/StraightenTool.vala') diff --git a/src/editing_tools/StraightenTool.vala b/src/editing_tools/StraightenTool.vala index f427b99..2b0591a 100644 --- a/src/editing_tools/StraightenTool.vala +++ b/src/editing_tools/StraightenTool.vala @@ -80,13 +80,13 @@ public class StraightenTool : EditingTool { // different backgrounds. ctx.set_source_rgba(0.0, 0.0, 0.0, alpha); ctx.set_dash(GUIDE_DASH, GUIDE_DASH[0] / 2); - ctx.move_to(x[0] + 0.5, y[0] + 0.5); - ctx.line_to(x[1] + 0.5, y[1] + 0.5); + ctx.move_to(x[0] * Application.get_scale() + 0.5, y[0]* Application.get_scale() + 0.5); + ctx.line_to(x[1] * Application.get_scale()+ 0.5, y[1]* Application.get_scale() + 0.5); ctx.stroke(); ctx.set_dash(GUIDE_DASH, -GUIDE_DASH[0] / 2); ctx.set_source_rgba(1.0, 1.0, 1.0, alpha); - ctx.move_to(x[0] + 0.5, y[0] + 0.5); - ctx.line_to(x[1] + 0.5, y[1] + 0.5); + ctx.move_to(x[0] * Application.get_scale()+ 0.5, y[0]* Application.get_scale() + 0.5); + ctx.line_to(x[1] * Application.get_scale()+ 0.5, y[1] * Application.get_scale()+ 0.5); ctx.stroke(); } } @@ -456,7 +456,7 @@ public class StraightenTool : EditingTool { */ private void update_rotated_surface() { draw_rotated_source(photo_surf, rotate_ctx, view_width, view_height, photo_angle); - rotate_ctx.set_line_width(1.0); + rotate_ctx.set_line_width(1.0 * Application.get_scale()); draw_superimposed_grid(rotate_ctx, view_width, view_height); } @@ -468,8 +468,8 @@ public class StraightenTool : EditingTool { * it's not used. */ public override void paint(Cairo.Context ctx) { - int w = canvas.get_drawing_window().get_width(); - int h = canvas.get_drawing_window().get_height(); + var w = canvas.get_drawing_window().get_width() * Application.get_scale(); + var h = canvas.get_drawing_window().get_height() * Application.get_scale(); // fill region behind the rotation surface with neutral color. canvas.get_default_ctx().identity_matrix(); -- cgit v1.2.3