We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99fb58a commit a314559Copy full SHA for a314559
examples/qt.py
@@ -337,7 +337,11 @@ def __init__(self, cef_widget):
337
self.cef_widget = cef_widget
338
339
def OnSetFocus(self, **_):
340
- pass
+ print("[qt.py] FocusHandler.OnSetFocus")
341
+ if LINUX:
342
+ return False
343
+ else:
344
+ return True
345
346
def OnGotFocus(self, browser, **_):
347
# Temporary fix no. 1 for focus issues on Linux (Issue #284)
0 commit comments