ソースを参照

Tweak the presentationOptions delay

Tobias Hieta 8 年 前
コミット
00257a1fe2
1 ファイル変更2 行追加2 行削除
  1. 2 2
      src/ui/KonvergoWindow.cpp

+ 2 - 2
src/ui/KonvergoWindow.cpp

@@ -391,13 +391,13 @@ void KonvergoWindow::onVisibilityChanged(QWindow::Visibility visibility)
   {
     loadGeometry();
 #ifdef Q_OS_MAC
-    QTimer::singleShot(3 * 1000, [&] { OSXUtils::SetPresentationOptions(m_osxPresentationOptions); });
+    QTimer::singleShot(1 * 1000, [&] { OSXUtils::SetPresentationOptions(m_osxPresentationOptions); });
 #endif
   }
   else if (visibility == QWindow::FullScreen)
   {
 #ifdef Q_OS_MAC
-    QTimer::singleShot(3 * 1000, [&] {
+    QTimer::singleShot(1 * 1000, [&] {
       OSXUtils::SetPresentationOptions(m_osxPresentationOptions | OSXUtils::GetPresentationOptionsForFullscreen(!m_webDesktopMode));
     });
 #endif