summaryrefslogtreecommitdiff
path: root/noncore/settings/appearance2/appearance.cpp
Side-by-side diff
Diffstat (limited to 'noncore/settings/appearance2/appearance.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/appearance2/appearance.cpp27
1 files changed, 17 insertions, 10 deletions
diff --git a/noncore/settings/appearance2/appearance.cpp b/noncore/settings/appearance2/appearance.cpp
index 83532de..c376ec7 100644
--- a/noncore/settings/appearance2/appearance.cpp
+++ b/noncore/settings/appearance2/appearance.cpp
@@ -431,6 +431,14 @@ QWidget *Appearance::createAdvancedTab ( QWidget *parent, Config &cfg )
- int rot = cfg. readNumEntry ( "rotatedir", 0 );
- m_rotdir_cw-> setChecked ( rot == 0 );
- m_rotdir_ccw-> setChecked ( rot == 1 );
- m_rotdir_flip-> setChecked ( rot == 2 );
+ int rotDirection = cfg.readNumEntry( "rotatedir" );
+ ODirection rot = CW;
+
+ if (rotDirection == -1) {
+ rot = ODevice::inst ( )-> direction ( );
+ } else {
+ rot = (ODirection)rotDirection;
+ }
+
+ m_rotdir_cw-> setChecked ( rot == CW );
+ m_rotdir_ccw-> setChecked ( rot == CCW );
+ m_rotdir_flip-> setChecked ( rot == Flip );
@@ -528,12 +536,11 @@ void Appearance::accept ( )
- bool is_rotdir_ccw = m_rotdir_ccw-> isChecked ( );
- int rotval;
+ ODirection rot;
if (m_rotdir_ccw-> isChecked ( )) {
- rotval = 1;
+ rot = CCW;
} else if (m_rotdir_cw-> isChecked ( )) {
- rotval = 0;
+ rot = CW;
} else {
- rotval = 2;
+ rot = Flip;
}
- config. writeEntry ( "rotatedir", rotval );
+ config. writeEntry ( "rotatedir", (int)rot );