Commit: ea3b2e8736164e01d7fc5630eb7c7adbc01c8bc4 Author: Leon Schittek Date: Mon Mar 7 16:15:16 2022 +0100 Branches: blender-v3.1-release https://developer.blender.org/rBea3b2e8736164e01d7fc5630eb7c7adbc01c8bc4
Fix T95531: Draw y axis values in Driver Editor When drawing the driver editor, only skip drawing the "scrubbing area" and not the Y-axis values or the scroll bars. The issue was introduced in rBb3431a88465db2433b46e1f6426c801125d0047d to avoid drawing the playhead in the Driver Editor but also prevented the text on the y axis from being drawn. Reviewed by: Severin, sybren Maniphest Tasks: T95531 Differential Revision: https://developer.blender.org/D14022 =================================================================== M source/blender/editors/space_graph/space_graph.c =================================================================== diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c index 7d5e8836490..537f6db2d4d 100644 --- a/source/blender/editors/space_graph/space_graph.c +++ b/source/blender/editors/space_graph/space_graph.c @@ -311,16 +311,14 @@ static void graph_main_region_draw_overlay(const bContext *C, ARegion *region) /* draw entirely, view changes should be handled here */ const SpaceGraph *sipo = CTX_wm_space_graph(C); - /* Driver Editor's X axis is not time. */ - if (sipo->mode == SIPO_MODE_DRIVERS) { - return; - } - const Scene *scene = CTX_data_scene(C); View2D *v2d = ®ion->v2d; - /* scrubbing region */ - ED_time_scrub_draw_current_frame(region, scene, sipo->flag & SIPO_DRAWTIME); + /* Driver Editor's X axis is not time. */ + if (sipo->mode != SIPO_MODE_DRIVERS) { + /* scrubbing region */ + ED_time_scrub_draw_current_frame(region, scene, sipo->flag & SIPO_DRAWTIME); + } /* scrollers */ /* FIXME: args for scrollers depend on the type of data being shown. */ _______________________________________________ Bf-blender-cvs mailing list Bf-blender-cvs@blender.org List details, subscription details or unsubscribe: https://lists.blender.org/mailman/listinfo/bf-blender-cvs