diff options
-rw-r--r-- | scatterplot.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |