From d57d83e0cda09c34dc92dfedb841a979b767e504 Mon Sep 17 00:00:00 2001 From: kergoth Date: Wed, 26 Mar 2003 23:55:38 +0000 Subject: BUGFIX: as pointed out by robert, dont fsck with QWS_DISPLAY if it was already set. --- 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() * 3. use physical orientation (currently fails due to ODevice * using a QPixmap and therefore requiring a QApplication) */ - if ( ( rot = QPEApplication::defaultRotation ( ) ) == 0 ) { + if ( getenv("QWS_DISPLAY") == NULL ) { Config config("qpe"); config.setGroup( "Rotation" ); if ( ( rot = config.readNumEntry( "Rot", -1 ) ) == -1 ) 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 */ + } } -- cgit v0.9.0.2