Revision: 50159
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=50159
Author:   campbellbarton
Date:     2012-08-23 14:49:20 +0000 (Thu, 23 Aug 2012)
Log Message:
-----------
sequencer zooms horizontal only from mouse wheel and plus buttons.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/interface/view2d_ops.c

Modified: trunk/blender/source/blender/editors/interface/view2d_ops.c
===================================================================
--- trunk/blender/source/blender/editors/interface/view2d_ops.c 2012-08-23 
13:54:30 UTC (rev 50158)
+++ trunk/blender/source/blender/editors/interface/view2d_ops.c 2012-08-23 
14:49:20 UTC (rev 50159)
@@ -672,13 +672,22 @@
 /* this operator only needs this single callback, where it calls the 
view_zoom_*() methods */
 static int view_zoomin_exec(bContext *C, wmOperator *op)
 {
+       ScrArea *sa = CTX_wm_area(C);
+       short do_zoom_x = TRUE;
+       short do_zoom_y = TRUE;
+
        /* check that there's an active region, as View2D data resides there */
        if (!view_zoom_poll(C))
                return OPERATOR_PASS_THROUGH;
        
+       /* default not to zoom the sequencer vertically */
+       if (sa && sa->spacetype == SPACE_SEQ) {
+               do_zoom_y = FALSE;
+       }
+
        /* set RNA-Props - zooming in by uniform factor */
-       RNA_float_set(op->ptr, "zoomfacx", 0.0375f);
-       RNA_float_set(op->ptr, "zoomfacy", 0.0375f);
+       RNA_float_set(op->ptr, "zoomfacx", do_zoom_x ? 0.0375f : 0.0f);
+       RNA_float_set(op->ptr, "zoomfacy", do_zoom_y ? 0.0375f : 0.0f);
        
        /* apply movement, then we're done */
        view_zoomstep_apply(C, op);
@@ -729,13 +738,22 @@
 /* this operator only needs this single callback, where it callsthe 
view_zoom_*() methods */
 static int view_zoomout_exec(bContext *C, wmOperator *op)
 {
+       ScrArea *sa = CTX_wm_area(C);
+       short do_zoom_x = TRUE;
+       short do_zoom_y = TRUE;
+
        /* check that there's an active region, as View2D data resides there */
        if (!view_zoom_poll(C))
                return OPERATOR_PASS_THROUGH;
        
+       /* default not to zoom the sequencer vertically */
+       if (sa && sa->spacetype == SPACE_SEQ) {
+               do_zoom_y = FALSE;
+       }
+
        /* set RNA-Props - zooming in by uniform factor */
-       RNA_float_set(op->ptr, "zoomfacx", -0.0375f);
-       RNA_float_set(op->ptr, "zoomfacy", -0.0375f);
+       RNA_float_set(op->ptr, "zoomfacx", do_zoom_x ? -0.0375f : 0.0f);
+       RNA_float_set(op->ptr, "zoomfacy", do_zoom_y ? -0.0375f : 0.0f);
        
        /* apply movement, then we're done */
        view_zoomstep_apply(C, op);

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to