Jelajahi Sumber

DisplayComponent: explicitly log setDisplayMode() success

It can be deduced from the other log messages, but that's always such a
drag.
Vincent Lang 9 tahun lalu
induk
melakukan
c2b4e2f8f6
1 mengubah file dengan 6 tambahan dan 1 penghapusan
  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.";
   }