From f1e08093b1fbcd49f0670e87482690ff6273bd5a Mon Sep 17 00:00:00 2001 From: Guido Ranzuglia granzuglia Date: Fri, 2 Jul 2010 06:30:19 +0000 Subject: [PATCH] fixed bug in vertices selection. now the plugin stop to select when you release the mouse button. --- src/meshlabplugins/edit_select/edit_select.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/meshlabplugins/edit_select/edit_select.cpp b/src/meshlabplugins/edit_select/edit_select.cpp index f139fdb3f..de10521b0 100644 --- a/src/meshlabplugins/edit_select/edit_select.cpp +++ b/src/meshlabplugins/edit_select/edit_select.cpp @@ -114,6 +114,7 @@ void EditSelectPlugin::mousePressEvent(QMouseEvent * event, MeshModel &m, GLArea gla->update(); prev=cur; cur=event->pos(); + isDragging = false; } void EditSelectPlugin::DrawXORRect(GLArea * gla, bool doubleDraw)