-rw-r--r-- | core/launcher/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/launcher/main.cpp b/core/launcher/main.cpp index fa4df3c..a6e2a9d 100644 --- a/core/launcher/main.cpp +++ b/core/launcher/main.cpp @@ -81,3 +81,3 @@ void initEnvironment() */ - if ( ( rot = QPEApplication::defaultRotation ( ) ) == 0 ) { + if ( getenv("QWS_DISPLAY") == NULL ) { Config config("qpe"); @@ -86,6 +86,6 @@ void initEnvironment() rot = ODevice::inst ( )-> rotation ( ) * 90; - } - setenv("QWS_DISPLAY", QString("Transformed:Rot%1:0").arg(rot), 1); - QPEApplication::defaultRotation ( ); /* to ensure deforient matches reality */ + setenv("QWS_DISPLAY", QString("Transformed:Rot%1:0").arg(rot), 1); + QPEApplication::defaultRotation ( ); /* to ensure deforient matches reality */ + } } |