jak
jak copied to clipboard
Implement FullscreenRequest
https://bugreports.qt.io/browse/PYSIDE-930
This would work but the signal only gets called once and we can't get back from fullscreen.
self.fullScreenRequested.connect(self._on_full_screen_requested)
def _on_full_screen_requested(self, request):
self.win = Instance.retrieve("win")
if self.win.isFullScreen():
else:
self.win.showFullScreen()