update shortcuts doc, period/comma alt shortcuts, popup deactivate fix, click2play...
[goodguy/history.git] / cinelerra-5.1 / cinelerra / mwindowgui.C
index ec33eba7b24fe9e4998bc968fe48be937d5f2784..d1aea0fc026c6c0440f12b839ce345bc74e5e654 100644 (file)
@@ -1195,6 +1195,13 @@ int MWindowGUI::keypress_event()
                }
                break;
 
+       case ',':
+               if( !ctrl_down() && !alt_down() ) {
+                       mwindow->move_left();
+                       result = 1;
+               }
+               break;
+
        case RIGHT:
                if( !ctrl_down() ) {
                        if( alt_down() ) {
@@ -1207,6 +1214,13 @@ int MWindowGUI::keypress_event()
                }
                break;
 
+       case '.':
+               if( !ctrl_down() && !alt_down() ) {
+                       mwindow->move_right();
+                       result = 1;
+               }
+               break;
+
        case UP:
                if( ctrl_down() && !alt_down() )
                        mwindow->expand_y();