소스 검색

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 년 전
부모
커밋
b3f7772fae
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  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);
 }
 
 /////////////////////////////////////////////////////////////////////////////////////////