aboutsummaryrefslogtreecommitdiffstats
path: root/HomeScreen/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'HomeScreen/src/main.cpp')
-rw-r--r--HomeScreen/src/main.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/HomeScreen/src/main.cpp b/HomeScreen/src/main.cpp
index be8b534..cc552f2 100644
--- a/HomeScreen/src/main.cpp
+++ b/HomeScreen/src/main.cpp
@@ -36,12 +36,16 @@ int main(int argc, char *argv[])
QCoreApplication::setOrganizationDomain("LinuxFoundation");
QCoreApplication::setOrganizationName("AutomotiveGradeLinux");
QCoreApplication::setApplicationName("HomeScreen");
- QCoreApplication::setApplicationVersion("0.1.1");
+ QCoreApplication::setApplicationVersion("0.2.0");
- // maybe trigger the wayland compositor to position the surface correctly
MainWindow w;
- w.move(0, 0);
w.show();
+#ifdef __arm__
+ // trigger wayland compositor to position the surface correctly
+#endif
+#ifdef __i386__
+ w.move(0, 0);
+#endif
#ifdef __arm__