From 84435fe73280dee3ea18e294b7ea1ef560baab01 Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Tue, 13 Oct 2015 12:52:00 -0300 Subject: Changed update modifier to Shift (Scatterplot). --- scatterplot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scatterplot.cpp') diff --git a/scatterplot.cpp b/scatterplot.cpp index 10f7f34..3db80c2 100644 --- a/scatterplot.cpp +++ b/scatterplot.cpp @@ -273,7 +273,7 @@ void Scatterplot::mousePressEvent(QMouseEvent *event) switch (m_currentInteractionState) { case INTERACTION_NONE: case INTERACTION_SELECTED: - if (event->modifiers() == Qt::AltModifier) { + if (event->modifiers() == Qt::ShiftModifier) { m_currentInteractionState = INTERACTION_BEGIN_MOVING; } else { m_currentInteractionState = INTERACTION_SELECTING; -- cgit v1.2.3