[Bf-blender-cvs] [eacaebea837] master: Cleanup: Remove redundant View2D operator poll check

Julian Eisel noreply at git.blender.org
Sat Oct 3 18:35:05 CEST 2020


Commit: eacaebea837a652a4b68b515ef82ecee2e58477c
Author: Julian Eisel
Date:   Sat Oct 3 17:20:05 2020 +0200
Branches: master
https://developer.blender.org/rBeacaebea837a652a4b68b515ef82ecee2e58477c

Cleanup: Remove redundant View2D operator poll check

The poll would already be executed as operator callback, this check was
redundant. Also see previous commit.

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

M	source/blender/editors/interface/view2d_ops.c

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

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 */



More information about the Bf-blender-cvs mailing list