[Bf-blender-cvs] [bc891ad124f] blender-v2.79a-release: Fix T53958: Sequencer zoom 1:1 fails

Campbell Barton noreply at git.blender.org
Thu Feb 15 05:47:41 CET 2018


Commit: bc891ad124ff100b505a20f88da066238a5db440
Author: Campbell Barton
Date:   Fri Feb 9 13:39:47 2018 +1100
Branches: blender-v2.79a-release
https://developer.blender.org/rBbc891ad124ff100b505a20f88da066238a5db440

Fix T53958: Sequencer zoom 1:1 fails

===================================================================

M	source/blender/editors/space_sequencer/sequencer_edit.c

===================================================================

diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index 17bc39c69eb..17658497d9b 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -2806,7 +2806,7 @@ static int sequencer_view_zoom_ratio_exec(bContext *C, wmOperator *op)
 	float facx = BLI_rcti_size_x(&v2d->mask) / winx;
 	float facy = BLI_rcti_size_y(&v2d->mask) / winy;
 
-	BLI_rctf_resize(&v2d->cur, floorf(winx * facx / ratio + 0.5f), floorf(winy * facy / ratio + 0.5f));
+	BLI_rctf_resize(&v2d->cur, ceilf(winx * facx / ratio + 0.5f), ceilf(winy * facy / ratio + 0.5f));
 
 	ED_region_tag_redraw(CTX_wm_region(C));



More information about the Bf-blender-cvs mailing list