Browse Source

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 7 years ago
parent
commit
b3f7772fae
1 changed files with 2 additions and 0 deletions
  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);
 }
 
 /////////////////////////////////////////////////////////////////////////////////////////