diff --git a/source/blender/editors/screen/screen_ops.cc b/source/blender/editors/screen/screen_ops.cc index 89cf6a1f1b9..3962003226d 100644 --- a/source/blender/editors/screen/screen_ops.cc +++ b/source/blender/editors/screen/screen_ops.cc @@ -3240,7 +3240,7 @@ static int keyframe_jump_exec(bContext *C, wmOperator *op) static bool keyframe_jump_poll(bContext *C) { /* There is a keyframe jump operator specifically for the Graph Editor. */ - return ED_operator_screenactive_norender(C) && CTX_wm_area(C)->spacetype != SPACE_GRAPH; + return ED_operator_screenactive_norender(C) && ED_operator_graphedit_active(C); } static void SCREEN_OT_keyframe_jump(wmOperatorType *ot)