From c299b6b5cd72ce186baa9a0a1cc09a4293431d74 Mon Sep 17 00:00:00 2001
From: Ryan Dwyer <ryandwyer1@gmail.com>
Date: Thu, 19 Jul 2018 13:42:43 +1000
Subject: Use max multiplier when resizing while preserving ratio

---
 sway/input/cursor.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'sway/input')

diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index e5631f5b..a24a7de8 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -238,9 +238,9 @@ static void handle_resize_motion(struct sway_seat *seat,
 	if (seat->op_resize_preserve_ratio) {
 		double x_multiplier = grow_width / seat->op_ref_width;
 		double y_multiplier = grow_height / seat->op_ref_height;
-		double avg_multiplier = (x_multiplier + y_multiplier) / 2;
-		grow_width = seat->op_ref_width * avg_multiplier;
-		grow_height = seat->op_ref_height * avg_multiplier;
+		double max_multiplier = fmax(x_multiplier, y_multiplier);
+		grow_width = seat->op_ref_width * max_multiplier;
+		grow_height = seat->op_ref_height * max_multiplier;
 	}
 
 	// Determine new width/height, and accommodate for min/max values
-- 
cgit v1.2.3