add input focus, negate dx,dy for camera drag motion
[goodguy/history.git] / cinelerra-5.1 / guicast / bcwindowbase.C
index 7de7c15d2d13573043729aa9d01dcf9c7d69ead9..724a44f772907222122912fcc26a51067041bf7b 100644 (file)
@@ -1357,7 +1357,7 @@ locking_message = event->xclient.message_type;
                                cursor_entered = 1;
                        }
                        if( cursor_entered )
-                               XSetInputFocus(display, win, RevertToParent, CurrentTime);
+                               focus();
                }
                event_win = event->xany.window;
                cursor_x = event->xcrossing.x;
@@ -4577,3 +4577,8 @@ void BC_WindowBase::flicker(int n, int ms)
        set_opaque();
 }
 
+void BC_WindowBase::focus()
+{
+       XSetInputFocus(top_level->display, top_level->win, RevertToParent, CurrentTime);
+}
+