浏览代码

KonvergoWindow: remove some hacks

Vincent Lang 7 年之前
父节点
当前提交
9045182ad5
共有 2 个文件被更改,包括 1 次插入22 次删除
  1. 1 20
      src/ui/KonvergoWindow.cpp
  2. 0 2
      src/ui/KonvergoWindow.h

+ 1 - 20
src/ui/KonvergoWindow.cpp

@@ -21,8 +21,6 @@
 #include "Globals.h"
 #include "EventFilter.h"
 
-#define MAX_RECURSION_DEPTH 50
-
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 class ScopedDecrementer
 {
@@ -41,8 +39,7 @@ KonvergoWindow::KonvergoWindow(QWindow* parent) :
   m_debugLayer(false),
   m_ignoreFullscreenSettingsChange(0),
   m_showedUpdateDialog(false),
-  m_osxPresentationOptions(0),
-  m_eventRecursionDepth(0)
+  m_osxPresentationOptions(0)
 {
   // NSWindowCollectionBehaviorFullScreenPrimary is only set on OSX if Qt::WindowFullscreenButtonHint is set on the window.
   setFlags(flags() | Qt::WindowFullscreenButtonHint);
@@ -364,14 +361,6 @@ void KonvergoWindow::playerWindowVisible(bool visible)
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 void KonvergoWindow::updateMainSectionSettings(const QVariantMap& values)
 {
-  m_eventRecursionDepth++;
-  ScopedDecrementer decrement(&m_eventRecursionDepth);
-  if (m_eventRecursionDepth > MAX_RECURSION_DEPTH)
-  {
-    QLOG_ERROR() << "Maximum recursion depth reached! (updateMainSectionSettings)";
-    return;
-  }
-
   // update mouse visibility if needed
   if (values.find("disablemouse") != values.end())
   {
@@ -523,14 +512,6 @@ void KonvergoWindow::onVisibilityChanged(QWindow::Visibility visibility)
 {
   QLOG_DEBUG() << "QWindow visibility set to" << visibility;
 
-  m_eventRecursionDepth++;
-  ScopedDecrementer decrement(&m_eventRecursionDepth);
-  if (m_eventRecursionDepth > MAX_RECURSION_DEPTH)
-  {
-    QLOG_ERROR() << "Maximum recursion depth reached! (onVisibilityChanged)";
-    return;
-  }
-
 #ifdef Q_OS_WIN32
   if (visibility == QWindow::Windowed)
   {

+ 0 - 2
src/ui/KonvergoWindow.h

@@ -135,8 +135,6 @@ private:
   unsigned long m_osxPresentationOptions;
   QString m_currentScreenName;
 
-  int m_eventRecursionDepth;
-
   void setWebMode(bool newDesktopMode, bool fullscreen);
 };