Explorar el Código

KonvergoWindow: allow the default handling of focus events to occur

This allows Chromium to be notified when the window is focused and blurred,
which fixes some awkward issues where it'd keep modifier keys "held" after
you tabbed away from PMP and back.
Rodger Combs hace 7 años
padre
commit
b3f7772fae
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      src/ui/KonvergoWindow.cpp

+ 2 - 0
src/ui/KonvergoWindow.cpp

@@ -595,6 +595,8 @@ void KonvergoWindow::focusOutEvent(QFocusEvent * ev)
     showMinimized();
   }
 #endif
+
+  QQuickWindow::focusOutEvent(ev);
 }
 
 /////////////////////////////////////////////////////////////////////////////////////////