Index: samplecode/SampleApp.cpp |
=================================================================== |
--- samplecode/SampleApp.cpp (revision 9039) |
+++ samplecode/SampleApp.cpp (working copy) |
@@ -1846,7 +1846,7 @@ |
return true; |
case kUp_SkKey: |
if (USE_ARROWS_FOR_ZOOM) { |
- this->changeZoomLevel(1.f); |
+ this->changeZoomLevel(1.f / 32.f); |
} else { |
fNClip = !fNClip; |
this->inval(NULL); |
@@ -1855,7 +1855,7 @@ |
return true; |
case kDown_SkKey: |
if (USE_ARROWS_FOR_ZOOM) { |
- this->changeZoomLevel(-1.f); |
+ this->changeZoomLevel(-1.f / 32.f); |
} else { |
this->setConfig(cycle_configs(this->getBitmap().config())); |
this->updateTitle(); |