Преглед изворни кода

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