diff options
author | Samuel Fadel <samuelfadel@gmail.com> | 2015-10-13 12:52:00 -0300 |
---|---|---|
committer | Samuel Fadel <samuelfadel@gmail.com> | 2015-10-13 12:52:00 -0300 |
commit | 84435fe73280dee3ea18e294b7ea1ef560baab01 (patch) | |
tree | c4b6e84d9dcf883ec41627a0a00ef3fef0dda9e9 | |
parent | 17ffa29fce56983d8c6e2b78634b4ff36363fb5b (diff) |
Changed update modifier to Shift (Scatterplot).
-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; |