summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye
Unidiff
Diffstat (limited to 'noncore/graphics/opie-eye') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/gui/mainwindow.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/noncore/graphics/opie-eye/gui/mainwindow.cpp b/noncore/graphics/opie-eye/gui/mainwindow.cpp
index 6f3f255..5ba4c8e 100644
--- a/noncore/graphics/opie-eye/gui/mainwindow.cpp
+++ b/noncore/graphics/opie-eye/gui/mainwindow.cpp
@@ -165,10 +165,13 @@ void PMainWindow::slotRotateToggled(bool how)
165void PMainWindow::slotScaleToggled(bool how) 165void PMainWindow::slotScaleToggled(bool how)
166{ 166{
167 autoScale = !how; 167 autoScale = !how;
168 if (!how) {
169 autoRotate = how;
170 }
168 if (m_disp) { 171 if (m_disp) {
169 m_disp->setAutoScale(autoScale); 172 m_disp->setAutoScaleRotate(autoScale,autoRotate);
170 } 173 }
171 if (!autoScale && autoRotate) { 174 if (!autoScale) {
172 rotateButton->setOn(false); 175 rotateButton->setOn(false);
173 } 176 }
174 rotateButton->setEnabled(!how); 177 rotateButton->setEnabled(!how);