diff --git a/src/wxxt/src/Windows/Frame.cc b/src/wxxt/src/Windows/Frame.cc index 38ca1c8dc7..d8575f58ae 100644 --- a/src/wxxt/src/Windows/Frame.cc +++ b/src/wxxt/src/Windows/Frame.cc @@ -377,6 +377,10 @@ Bool wxFrame::Create(wxFrame *frame_parent, char *title, } } + /* Let window managers know that the frame can receive the focus + (patch from Alexey Voinov): */ + XtVaSetValues(X->frame, XtNinput, True, NULL); + return TRUE; }