diff --git a/src/Application/TextureMappingState.cpp b/src/Application/TextureMappingState.cpp index 2350c90..4ef45b2 100644 --- a/src/Application/TextureMappingState.cpp +++ b/src/Application/TextureMappingState.cpp @@ -23,6 +23,11 @@ void TextureMappingState::onKeyPressed(Application * app, ofKeyEventArgs & args) app->getCmdManager()->exec( new SelNextTexCoordCmd(app->getGui()->getTextureEditor())); break; + case '<': + app->getCmdManager()->exec( + new SelPrevTexCoordCmd(app->getGui()->getTextureEditor())); + break; + case ' ': app->getCmdManager()->exec( new DeselectTexCoordCmd(app->getGui()->getTextureEditor())); diff --git a/src/Application/TextureMappingState.h b/src/Application/TextureMappingState.h index 68d17ca..12e37f5 100644 --- a/src/Application/TextureMappingState.h +++ b/src/Application/TextureMappingState.h @@ -5,6 +5,7 @@ #include "ofLog.h" #include "ofGraphics.h" #include "SelNextTexCoordCmd.h" +#include "SelPrevTexCoordCmd.h" #include "DeselectTexCoordCmd.h" namespace ofx {