author | kergoth <kergoth> | 2003-04-15 03:09:04 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-04-15 03:09:04 (UTC) |
commit | 35edf52692c9f5e68b07072dd79b857d16d79559 (patch) (unidiff) | |
tree | eba09e5b180592ddbad73106025759bb1b30c888 | |
parent | a0dd69741995f33de4eea6a5f97f46b91dff4cb8 (diff) | |
download | opie-35edf52692c9f5e68b07072dd79b857d16d79559.zip opie-35edf52692c9f5e68b07072dd79b857d16d79559.tar.gz opie-35edf52692c9f5e68b07072dd79b857d16d79559.tar.bz2 |
Unconditionally override Rot value when using the Transformed driver.
This 1) Ensures that we dont hose QWS_DISPLAY when using a driver other
than transformed, and 2) should ensure that the default rotation isnt
screwed up when 'restart'ing Opie, thereby closing bug #796.
-rw-r--r-- | core/launcher/main.cpp | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/core/launcher/main.cpp b/core/launcher/main.cpp index a6e2a9d..20a1ecd 100644 --- a/core/launcher/main.cpp +++ b/core/launcher/main.cpp | |||
@@ -73,12 +73,7 @@ void initEnvironment() | |||
73 | #endif | 73 | #endif |
74 | 74 | ||
75 | /* | 75 | QString env(getenv("QWS_DISPLAY")); |
76 | * Rotation: | 76 | if (env.contains("Transformed")) { |
77 | * 1. use env var if set | 77 | // transformed driver default rotation is controlled by the hardware. |
78 | * 2. use saved default if set | ||
79 | * 3. use physical orientation (currently fails due to ODevice | ||
80 | * using a QPixmap and therefore requiring a QApplication) | ||
81 | */ | ||
82 | if ( getenv("QWS_DISPLAY") == NULL ) { | ||
83 | Config config("qpe"); | 78 | Config config("qpe"); |
84 | config.setGroup( "Rotation" ); | 79 | config.setGroup( "Rotation" ); |