author | treke <treke> | 2003-12-09 03:25:26 (UTC) |
---|---|---|
committer | treke <treke> | 2003-12-09 03:25:26 (UTC) |
commit | 1440000b373d624956f7cbc693ac67e248b7bdb3 (patch) (unidiff) | |
tree | 9c6cc91452b7a4ae9b122908c23a2588dc31f28e | |
parent | 1538a521b674d2eff02b926c0d82fa6184dd99db (diff) | |
download | opie-1440000b373d624956f7cbc693ac67e248b7bdb3.zip opie-1440000b373d624956f7cbc693ac67e248b7bdb3.tar.gz opie-1440000b373d624956f7cbc693ac67e248b7bdb3.tar.bz2 |
Disabling the rotationw worked, but the code was horribly unobvious. Rewriting for clarity.
-rw-r--r-- | core/applets/rotateapplet/rotate.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/applets/rotateapplet/rotate.cpp b/core/applets/rotateapplet/rotate.cpp index 0da2f0c..dd71cad 100644 --- a/core/applets/rotateapplet/rotate.cpp +++ b/core/applets/rotateapplet/rotate.cpp | |||
@@ -135,15 +135,15 @@ void RotateApplet::rotateDefault ( ) | |||
135 | rot=0; | 135 | rot=0; |
136 | break; | 136 | break; |
137 | } | 137 | } |
138 | Config cfg( "qpe" ); | 138 | Config cfg( "qpe" ); |
139 | cfg.setGroup( "Appearance" ); | 139 | cfg.setGroup( "Appearance" ); |
140 | 140 | ||
141 | bool rotateDisabled = cfg.readBoolEntry( "rotateEnabled",false ); | 141 | bool rotateEnabled = cfg.readBoolEntry( "rotateEnabled",true ); |
142 | 142 | ||
143 | if (rotateDisabled == true) | 143 | if (rotateEnabled == false) |
144 | return; | 144 | return; |
145 | 145 | ||
146 | // hide inputs methods before rotation | 146 | // hide inputs methods before rotation |
147 | QCopEnvelope en( "QPE/TaskBar", "hideInputMethod()" ); | 147 | QCopEnvelope en( "QPE/TaskBar", "hideInputMethod()" ); |
148 | 148 | ||
149 | QCopEnvelope env( "QPE/System", "setCurrentRotation(int)" ); | 149 | QCopEnvelope env( "QPE/System", "setCurrentRotation(int)" ); |