Преглед на файлове

Avoid enforcing a width width / height on the TV UI

Matt Seeley преди 7 години
родител
ревизия
fd5128ca20
променени са 1 файла, в които са добавени 5 реда и са изтрити 5 реда
  1. 5 5
      src/ui/webview.qml

+ 5 - 5
src/ui/webview.qml

@@ -144,7 +144,6 @@ KonvergoWindow
   {
     id: web
     objectName: "web"
-    anchors.centerIn: parent
     settings.errorPageEnabled: false
     settings.localContentCanAccessRemoteUrls: true
     profile.httpUserAgent: components.system.getUserAgent()
@@ -153,15 +152,16 @@ KonvergoWindow
     focus: true
     property string currentHoveredUrl: ""
     onLinkHovered: web.currentHoveredUrl = hoveredUrl
-    width: mainWindow.webDesktopMode ? mainWindow.width : mainWindow.tvUIWidth
-    height: mainWindow.webDesktopMode ? mainWindow.height : mainWindow.tvUIHeight
+    width: mainWindow.width
+    height: mainWindow.height
 
     scale:
     {
       if (mainWindow.webDesktopMode)
+      {
         return 1;
-
-      if (mainWindow.windowScale < mainWindow.maxWebScale())
+      }
+      else if (mainWindow.windowScale < mainWindow.maxWebScale())
       {
         // Web renders at windows scale, no scaling
         return 1;