aboutsummaryrefslogtreecommitdiffstats
path: root/profile-widget
diff options
context:
space:
mode:
Diffstat (limited to 'profile-widget')
-rw-r--r--profile-widget/profilewidget2.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/profile-widget/profilewidget2.cpp b/profile-widget/profilewidget2.cpp
index 38bbfdd00..12be6e4a8 100644
--- a/profile-widget/profilewidget2.cpp
+++ b/profile-widget/profilewidget2.cpp
@@ -1873,19 +1873,6 @@ void ProfileWidget2::keyLeftAction()
if (dp.time / 60 <= 0)
continue;
- // don't overlap positions.
- // maybe this is a good place for a 'goto'?
- double xpos = timeAxis->posAtValue((dp.time - 60) / 60);
- bool nextStep = false;
- for (const auto &h: handles) {
- if (IS_FP_SAME(h->pos().x(), xpos)) {
- nextStep = true;
- break;
- }
- }
- if (nextStep)
- continue;
-
dp.time -= 60;
plannerModel->editStop(row, dp);
}
@@ -1907,19 +1894,6 @@ void ProfileWidget2::keyRightAction()
if (dp.time / 60.0 >= timeAxis->maximum())
continue;
- // don't overlap positions.
- // maybe this is a good place for a 'goto'?
- double xpos = timeAxis->posAtValue((dp.time + 60) / 60);
- bool nextStep = false;
- for (const auto &h: handles) {
- if (IS_FP_SAME(h->pos().x(), xpos)) {
- nextStep = true;
- break;
- }
- }
- if (nextStep)
- continue;
-
dp.time += 60;
plannerModel->editStop(row, dp);
}