From 976dbd9ad46ad07a07667224d021e1532c2f3522 Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Mon, 19 Sep 2016 11:41:29 +0200 Subject: [PATCH] Remove SurfaceManagerGui::mouseReleased() --- src/Surfaces/SurfaceManagerGui.cpp | 6 ------ src/Surfaces/SurfaceManagerGui.h | 1 - 2 files changed, 7 deletions(-) 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);