summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/main.cpp8
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
@@ -79,15 +79,15 @@ void initEnvironment()
79 * 3. use physical orientation (currently fails due to ODevice 79 * 3. use physical orientation (currently fails due to ODevice
80 * using a QPixmap and therefore requiring a QApplication) 80 * using a QPixmap and therefore requiring a QApplication)
81 */ 81 */
82 if ( ( rot = QPEApplication::defaultRotation ( ) ) == 0 ) { 82 if ( getenv("QWS_DISPLAY") == NULL ) {
83 Config config("qpe"); 83 Config config("qpe");
84 config.setGroup( "Rotation" ); 84 config.setGroup( "Rotation" );
85 if ( ( rot = config.readNumEntry( "Rot", -1 ) ) == -1 ) 85 if ( ( rot = config.readNumEntry( "Rot", -1 ) ) == -1 )
86 rot = ODevice::inst ( )-> rotation ( ) * 90; 86 rot = ODevice::inst ( )-> rotation ( ) * 90;
87 }
88 87
89 setenv("QWS_DISPLAY", QString("Transformed:Rot%1:0").arg(rot), 1); 88 setenv("QWS_DISPLAY", QString("Transformed:Rot%1:0").arg(rot), 1);
90 QPEApplication::defaultRotation ( ); /* to ensure deforient matches reality */ 89 QPEApplication::defaultRotation ( ); /* to ensure deforient matches reality */
90 }
91} 91}
92 92
93 93