|
@@ -255,6 +255,17 @@ void KonvergoWindow::onVisibilityChanged(QWindow::Visibility visibility)
|
|
|
PowerComponent::Get().setFullscreenState(false);
|
|
|
}
|
|
|
|
|
|
+/////////////////////////////////////////////////////////////////////////////////////////
|
|
|
+void KonvergoWindow::focusOutEvent(QFocusEvent * ev)
|
|
|
+{
|
|
|
+#ifdef Q_OS_WIN32
|
|
|
+ // Do this to workaround DWM compositor bugs with fullscreened OpenGL applications.
|
|
|
+ // The compositor will not properly redraw anything when focusing other windows.
|
|
|
+ if (visibility() == QWindow::FullScreen)
|
|
|
+ showMinimized();
|
|
|
+#endif
|
|
|
+}
|
|
|
+
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////
|
|
|
void KonvergoWindow::playerPlaybackStarting()
|
|
|
{
|