ソースを参照

Fix argument type for setContextProperty() on non-OSX

I suspect that using "0" here gets the QObject* overload of this
function, instead of the QVariant one. Fixes web display.
Vincent Lang 9 年 前
コミット
75394a8893
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/main.cpp

+ 1 - 1
src/main.cpp

@@ -244,7 +244,7 @@ int main(int argc, char *argv[])
 #ifdef Q_OS_MAC
     engine->rootContext()->setContextProperty("webMaxHeight", 1080);
 #else
-    engine->rootContext()->setContextProperty("webMaxHeight", 0);
+    engine->rootContext()->setContextProperty("webMaxHeight", 0.0);
 #endif
 
     // the only way to detect if QML parsing fails is to hook to this signal and then see