ソースを参照

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);
 }
 
 /////////////////////////////////////////////////////////////////////////////////////////