summaryrefslogtreecommitdiff
authoralwin <alwin>2004-04-16 07:40:36 (UTC)
committer alwin <alwin>2004-04-16 07:40:36 (UTC)
commit7be2cf603eb773672f8d4b0a411a4ee16ae0818f (patch) (unidiff)
tree22c9af3b5de541da6c1662adb0366934f6493a3b
parent9692c199f1f8b4c334687081e0d75bfbf9375ad8 (diff)
downloadopie-7be2cf603eb773672f8d4b0a411a4ee16ae0818f.zip
opie-7be2cf603eb773672f8d4b0a411a4ee16ae0818f.tar.gz
opie-7be2cf603eb773672f8d4b0a411a4ee16ae0818f.tar.bz2
use setAutoScaleRotate of the imagedisplay
Diffstat (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);