mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 21:14:10 +01:00
Use max multiplier when resizing while preserving ratio
This commit is contained in:
parent
f9491c9584
commit
c299b6b5cd
@ -238,9 +238,9 @@ static void handle_resize_motion(struct sway_seat *seat,
|
|||||||
if (seat->op_resize_preserve_ratio) {
|
if (seat->op_resize_preserve_ratio) {
|
||||||
double x_multiplier = grow_width / seat->op_ref_width;
|
double x_multiplier = grow_width / seat->op_ref_width;
|
||||||
double y_multiplier = grow_height / seat->op_ref_height;
|
double y_multiplier = grow_height / seat->op_ref_height;
|
||||||
double avg_multiplier = (x_multiplier + y_multiplier) / 2;
|
double max_multiplier = fmax(x_multiplier, y_multiplier);
|
||||||
grow_width = seat->op_ref_width * avg_multiplier;
|
grow_width = seat->op_ref_width * max_multiplier;
|
||||||
grow_height = seat->op_ref_height * avg_multiplier;
|
grow_height = seat->op_ref_height * max_multiplier;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Determine new width/height, and accommodate for min/max values
|
// Determine new width/height, and accommodate for min/max values
|
||||||
|
Loading…
Reference in New Issue
Block a user