Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <mail@jlucke.com>2019-05-21 12:59:10 +0300
committerJacques Lucke <mail@jlucke.com>2019-05-21 12:59:15 +0300
commitb03ee4828be1032052ee4f81f15691a56cde3415 (patch)
tree5f323461a60d19dd2808588e0ad4caeba849cdd0 /source/blender/editors/space_graph
parentdcec863b2f2fce7fc5caa138ad3816c88e2aa2a3 (diff)
Graph Editor: view-selected takes scrubbing and marker region into account
Diffstat (limited to 'source/blender/editors/space_graph')
-rw-r--r--source/blender/editors/space_graph/graph_edit.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c
index 8329218eea9..90cba617129 100644
--- a/source/blender/editors/space_graph/graph_edit.c
+++ b/source/blender/editors/space_graph/graph_edit.c
@@ -55,6 +55,7 @@
#include "DEG_depsgraph_build.h"
#include "UI_view2d.h"
+#include "UI_interface.h"
#include "ED_anim_api.h"
#include "ED_keyframing.h"
@@ -282,10 +283,18 @@ static int graphkeys_viewall(bContext *C,
do_sel_only,
include_handles);
+ /* Give some more space at the borders. */
BLI_rctf_scale(&cur_new, 1.1f);
- UI_view2d_smooth_view(C, ac.ar, &cur_new, smooth_viewtx);
+ /* Take regions into account, that could block the view. */
+ float padding_top = UI_SCRUBBING_MARGIN_Y;
+ float padding_bottom = 0;
+ if (!BLI_listbase_is_empty(ED_context_get_markers(C))) {
+ padding_bottom = UI_MARKER_MARGIN_Y;
+ }
+ BLI_rctf_padding_y(&cur_new, ac.ar->sizey * UI_DPI_FAC, padding_top, padding_bottom);
+ UI_view2d_smooth_view(C, ac.ar, &cur_new, smooth_viewtx);
return OPERATOR_FINISHED;
}