浏览代码

DisplayComponent: explicitly log setDisplayMode() success

It can be deduced from the other log messages, but that's always such a
drag.
Vincent Lang 9 年之前
父节点
当前提交
c2b4e2f8f6
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. 6 1
      src/display/DisplayComponent.cpp

+ 6 - 1
src/display/DisplayComponent.cpp

@@ -134,7 +134,12 @@ bool DisplayComponent::switchToBestVideoMode(float frameRate)
       << m_displayManager->displays[currentDisplay]->videoModes[bestmode]->getPrettyName()
       << "on display" << currentDisplay;
 
-      return m_displayManager->setDisplayMode(currentDisplay, bestmode);
+      if (!m_displayManager->setDisplayMode(currentDisplay, bestmode))
+      {
+        QLOG_INFO() << "Mode switching failed.";
+        return false;
+      }
+      return true;
     }
     QLOG_INFO() << "No better video mode than the currently active one found.";
   }