瀏覽代碼

Fix webUrl to contain initalScale needed for TV client.

Tobias Hieta 8 年之前
父節點
當前提交
cc8ca29f29
共有 2 個文件被更改,包括 11 次插入2 次删除
  1. 9 0
      src/ui/KonvergoWindow.cpp
  2. 2 2
      src/ui/KonvergoWindow.h

+ 9 - 0
src/ui/KonvergoWindow.cpp

@@ -453,4 +453,13 @@ QScreen* KonvergoWindow::loadLastScreen()
   return nullptr;
 }
 
+QString KonvergoWindow::webUrl()
+{
+  auto url = SettingsComponent::Get().getWebClientUrl();
+  if (m_webDesktopMode)
+    return url;
+
+  return url + QString("?initialScale=%0").arg(webScale());
+}
+
 

+ 2 - 2
src/ui/KonvergoWindow.h

@@ -49,7 +49,7 @@ public:
     return ((flags() & Qt::FramelessWindowHint) || (visibility() == QWindow::FullScreen));
   }
 
-  void setFullScreen(bool enable);
+  Q_INVOKABLE void setFullScreen(bool enable);
 
   bool isAlwaysOnTop()
   {
@@ -92,7 +92,7 @@ public:
   QSize windowMinSize() { return WINDOWW_MIN_SIZE; }
   static qreal CalculateScale(const QSize& size);
   static qreal CalculateWebScale(const QSize& size, qreal devicePixelRatio);
-  QString webUrl() { return SettingsComponent::Get().getWebClientUrl(); }
+  QString webUrl();
 
 Q_SIGNALS:
   void fullScreenSwitched();