jak icon indicating copy to clipboard operation
jak copied to clipboard

Implement FullscreenRequest

Open codesardine opened this issue 6 years ago • 1 comments

https://bugreports.qt.io/browse/PYSIDE-930

codesardine avatar Jul 08 '19 05:07 codesardine

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()

codesardine avatar Jul 08 '19 05:07 codesardine