diff --git a/src/Surfaces/SurfaceManagerGui.cpp b/src/Surfaces/SurfaceManagerGui.cpp index c8508a9..4edece2 100644 --- a/src/Surfaces/SurfaceManagerGui.cpp +++ b/src/Surfaces/SurfaceManagerGui.cpp @@ -93,12 +93,6 @@ void SurfaceManagerGui::mousePressed(ofMouseEventArgs & args){ }else if(guiMode == GuiMode::SOURCE_SELECTION){} } -void SurfaceManagerGui::mouseReleased(ofMouseEventArgs & args){ - //stopDrag(); - //projectionEditor.stopDragJoints(); - //textureEditor.stopDragJoints(); -} - void SurfaceManagerGui::mouseDragged(ofMouseEventArgs & args){ if(guiMode == GuiMode::TEXTURE_MAPPING){ textureEditor.mouseDragged(args); diff --git a/src/Surfaces/SurfaceManagerGui.h b/src/Surfaces/SurfaceManagerGui.h index adc7b5c..c1284c1 100644 --- a/src/Surfaces/SurfaceManagerGui.h +++ b/src/Surfaces/SurfaceManagerGui.h @@ -28,7 +28,6 @@ class SurfaceManagerGui { SurfaceManagerGui(); void mousePressed(ofMouseEventArgs & args); - void mouseReleased(ofMouseEventArgs & args); void mouseDragged(ofMouseEventArgs & args); void setSurfaceManager(SurfaceManager * newSurfaceManager);