From eacaebea837a652a4b68b515ef82ecee2e58477c Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Sat, 3 Oct 2020 17:20:05 +0200 Subject: [PATCH] Cleanup: Remove redundant View2D operator poll check The poll would already be executed as operator callback, this check was redundant. Also see previous commit. --- source/blender/editors/interface/view2d_ops.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/source/blender/editors/interface/view2d_ops.c b/source/blender/editors/interface/view2d_ops.c index 060e4354b70..959013906ea 100644 --- a/source/blender/editors/interface/view2d_ops.c +++ b/source/blender/editors/interface/view2d_ops.c @@ -987,11 +987,6 @@ static int view_zoomin_exec(bContext *C, wmOperator *op) { bool do_zoom_xy[2]; - /* check that there's an active region, as View2D data resides there */ - if (!view_zoom_poll(C)) { - return OPERATOR_PASS_THROUGH; - } - view_zoom_axis_lock_defaults(C, do_zoom_xy); /* set RNA-Props - zooming in by uniform factor */ @@ -1053,11 +1048,6 @@ static int view_zoomout_exec(bContext *C, wmOperator *op) { bool do_zoom_xy[2]; - /* check that there's an active region, as View2D data resides there */ - if (!view_zoom_poll(C)) { - return OPERATOR_PASS_THROUGH; - } - view_zoom_axis_lock_defaults(C, do_zoom_xy); /* set RNA-Props - zooming in by uniform factor */