diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-07-10 21:57:51 +0200 |
---|---|---|
committer | Robert C. Helling <helling@atdotde.de> | 2019-07-12 09:59:28 +0200 |
commit | 74244b3cfebb08d60fd32e938b396e8fa90a4774 (patch) | |
tree | 6dd3f26c4c9c40a6a77470addb5ebaaa5c9a7b1c /profile-widget/profilewidget2.cpp | |
parent | 5886550434e2c2e3c77880a4ee08f9d192d6984a (diff) | |
download | subsurface-74244b3cfebb08d60fd32e938b396e8fa90a4774.tar.gz |
Profile: take int instead of bool in DiveEventItem::recalculatePos
The goal here is to slowly make animation speed a variable of the
profile widget, not of the global preferences. Currently the code
does some trickeries with setting / unsetting the global animation
speed.
Start by not taking a bool "instant" but a speed in
DiveEventItem::recalculatePos().
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'profile-widget/profilewidget2.cpp')
-rw-r--r-- | profile-widget/profilewidget2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/profile-widget/profilewidget2.cpp b/profile-widget/profilewidget2.cpp index ca6ce3950..9eefb0fc1 100644 --- a/profile-widget/profilewidget2.cpp +++ b/profile-widget/profilewidget2.cpp @@ -788,7 +788,7 @@ void ProfileWidget2::plotDive(const struct dive *d, bool force, bool doClearPict #endif DiveEventItem *item = new DiveEventItem(); item->setHorizontalAxis(timeAxis); - item->setVerticalAxis(profileYAxis); + item->setVerticalAxis(profileYAxis, qPrefDisplay::animation_speed()); item->setModel(dataModel); item->setEvent(event, lastgasmix); item->setZValue(2); |