From 88fe5b6f0fecdb6f0594d963a736c2b5d505cf6a Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Mon, 10 Aug 2020 21:09:45 +0200 Subject: [PATCH] Fix ci compile error --- ScreenPlayWidget/main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ScreenPlayWidget/main.cpp b/ScreenPlayWidget/main.cpp index db696a0b..a8fbafdb 100644 --- a/ScreenPlayWidget/main.cpp +++ b/ScreenPlayWidget/main.cpp @@ -13,10 +13,13 @@ int main(int argc, char* argv[]) QStringList argumentList = app.arguments(); + // If we start with only one argument (path, appID, type), // it means we want to test a single widget if (argumentList.length() == 1) { - WidgetWindow spwmw("test", { 0, 0 }, "appid", "qmlWidget"); + // WidgetWindow spwmw("test", { 0, 0 }, "appid", "qmlWidget"); + //WidgetWindow spwmw("C:\\Program Files (x86)\\Steam\\steamapps\\workshop\\content\\672870\\2136442401", "appid", "qmlWidget", { 0, 0 }); + WidgetWindow spwmw("C:/Program Files (x86)/Steam/steamapps/workshop/content/672870/2136442401", "appid", "qmlWidget", { 0, 0 }); return app.exec(); }