Hi Ned

Thanks for that. Not sure though how it works. Sorry ... basic end user here I don't understand the patch.
Regards
Edouard

Chalaron,
The side scrolling mouse patch maybe your ticket.
It uses buttons 6 & 7 or you can just use the left & right arrow keys.

Ned

diff --git a/cinelerra/trackcanvas.C b/cinelerra/trackcanvas.C
index a820f75..a9a630f 100644
--- a/cinelerra/trackcanvas.C
+++ b/cinelerra/trackcanvas.C
@@ -5148,6 +5148,27 @@ int TrackCanvas::button_press_event()
                 mwindow->move_down(get_h() / 10);
             result = 1;
         }
+        if(get_buttonpress() == 6)
+                {
+            if(ctrl_down())
+                mwindow->move_left(get_w());
+            else if(alt_down())
+                mwindow->move_left(get_w() / 20);
+            else
+                mwindow->move_left(get_w() / 5);
+            result = 1;
+        }
+        else
+        if(get_buttonpress() == 7)
+                {
+            if(ctrl_down())
+                mwindow->move_right(get_w());
+            else if(alt_down())
+                mwindow->move_right(get_w() / 20);
+            else
+                mwindow->move_right(get_w() / 5);
+            result = 1;
+        }
         else
         switch(mwindow->edl->session->editing_mode)
         {




_______________________________________________
Cinelerra mailing list
Cinelerra@skolelinux.no
https://lists.skolelinux.org/listinfo/cinelerra

_______________________________________________
Cinelerra mailing list
Cinelerra@skolelinux.no
https://lists.skolelinux.org/listinfo/cinelerra

Reply via email to