aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-07-19 13:42:43 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-07-22 23:10:19 +1000
commitc299b6b5cd72ce186baa9a0a1cc09a4293431d74 (patch)
tree90382d0c2cfc59f69262d81551d797be968efe87
parentFix damage issue when moving and resizing (diff)
downloadsway-c299b6b5cd72ce186baa9a0a1cc09a4293431d74.tar.gz
sway-c299b6b5cd72ce186baa9a0a1cc09a4293431d74.tar.zst
sway-c299b6b5cd72ce186baa9a0a1cc09a4293431d74.zip
Use max multiplier when resizing while preserving ratio
-rw-r--r--sway/input/cursor.c6
1 files changed, 3 insertions, 3 deletions
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,
238 if (seat->op_resize_preserve_ratio) { 238 if (seat->op_resize_preserve_ratio) {
239 double x_multiplier = grow_width / seat->op_ref_width; 239 double x_multiplier = grow_width / seat->op_ref_width;
240 double y_multiplier = grow_height / seat->op_ref_height; 240 double y_multiplier = grow_height / seat->op_ref_height;
241 double avg_multiplier = (x_multiplier + y_multiplier) / 2; 241 double max_multiplier = fmax(x_multiplier, y_multiplier);
242 grow_width = seat->op_ref_width * avg_multiplier; 242 grow_width = seat->op_ref_width * max_multiplier;
243 grow_height = seat->op_ref_height * avg_multiplier; 243 grow_height = seat->op_ref_height * max_multiplier;
244 } 244 }
245 245
246 // Determine new width/height, and accommodate for min/max values 246 // Determine new width/height, and accommodate for min/max values