From 4344bd3f6b8edc2f03a87e13c38f09cb71f2cd26 Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Wed, 17 Aug 2016 21:59:57 +0200 Subject: [PATCH] Make `ScaleSurface*` steps bigger --- src/Application/ProjectionMappingState.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Application/ProjectionMappingState.cpp b/src/Application/ProjectionMappingState.cpp index e78994c..4aaa276 100644 --- a/src/Application/ProjectionMappingState.cpp +++ b/src/Application/ProjectionMappingState.cpp @@ -276,7 +276,7 @@ void ProjectionMappingState::onKeyPressed(Application * app, ofKeyEventArgs & ar if(app->getSurfaceManager()->getSelectedSurface() != 0){ app->getCmdManager()->exec( new ScaleSurfaceUpCmd( - app->getSurfaceManager()->getSelectedSurface(), 0.1f)); + app->getSurfaceManager()->getSelectedSurface(), 0.2f)); } break; @@ -284,7 +284,7 @@ void ProjectionMappingState::onKeyPressed(Application * app, ofKeyEventArgs & ar if(app->getSurfaceManager()->getSelectedSurface() != 0){ app->getCmdManager()->exec( new ScaleSurfaceDnCmd( - app->getSurfaceManager()->getSelectedSurface(), 0.1f)); + app->getSurfaceManager()->getSelectedSurface(), 0.2f)); } break;