diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2017-11-23 22:39:17 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-11-23 14:15:00 -0800 |
commit | 178dcbc0c693fc1d7b9bf3988ec2f3ac5ff3f2f3 (patch) | |
tree | d1efac9995a1ea36c5fab5bd548ee6adf3c2e54d /profile-widget | |
parent | 04f38d61d7b707c3ee29e00002380d596658395e (diff) | |
download | subsurface-178dcbc0c693fc1d7b9bf3988ec2f3ac5ff3f2f3.tar.gz |
Fix obscure display bug in profile widget, where heat map wasn't shown
Fixes an obscure bug, which happened under very specific circumstances.
Precodition: fresh program start and neither of the partial pressure
graphs, nor the heat maps are shown. User clicks on heat map icon.
Bug: The heat map is not shown at the bottom of the graph.
The fix consists in replacing two percentageAxis->setLine() calls
by precentageAxis->animateChangeLine() calls.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'profile-widget')
-rw-r--r-- | profile-widget/profilewidget2.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/profile-widget/profilewidget2.cpp b/profile-widget/profilewidget2.cpp index e88fa0fc1..855ec8544 100644 --- a/profile-widget/profilewidget2.cpp +++ b/profile-widget/profilewidget2.cpp @@ -839,7 +839,7 @@ void ProfileWidget2::settingsChanged() percentageAxis->animateChangeLine(itemPos.percentageWithTankBar.expanded); heartBeatAxis->setPos(itemPos.heartBeatWithTankBar.pos.on); heartBeatAxis->animateChangeLine(itemPos.heartBeatWithTankBar.expanded); - }else { + } else { percentageAxis->setPos(itemPos.percentage.pos.on); percentageAxis->animateChangeLine(itemPos.percentage.expanded); heartBeatAxis->setPos(itemPos.heartBeat.pos.on); @@ -847,7 +847,6 @@ void ProfileWidget2::settingsChanged() } gasYAxis->setPos(itemPos.partialPressureTissue.pos.on); gasYAxis->animateChangeLine(itemPos.partialPressureTissue.expanded); - } else if (PP_GRAPHS_ENABLED || prefs.hrgraph || prefs.percentagegraph) { profileYAxis->animateChangeLine(itemPos.depth.intermediate); temperatureAxis->setPos(itemPos.temperature.pos.on); @@ -857,14 +856,14 @@ void ProfileWidget2::settingsChanged() percentageAxis->setPos(itemPos.percentageWithTankBar.pos.on); percentageAxis->animateChangeLine(itemPos.percentageWithTankBar.expanded); gasYAxis->setPos(itemPos.partialPressureWithTankBar.pos.on); - gasYAxis->setLine(itemPos.partialPressureWithTankBar.expanded); + gasYAxis->animateChangeLine(itemPos.partialPressureWithTankBar.expanded); heartBeatAxis->setPos(itemPos.heartBeatWithTankBar.pos.on); heartBeatAxis->animateChangeLine(itemPos.heartBeatWithTankBar.expanded); } else { gasYAxis->setPos(itemPos.partialPressure.pos.on); gasYAxis->animateChangeLine(itemPos.partialPressure.expanded); percentageAxis->setPos(itemPos.percentage.pos.on); - percentageAxis->setLine(itemPos.percentage.expanded); + percentageAxis->animateChangeLine(itemPos.percentage.expanded); heartBeatAxis->setPos(itemPos.heartBeat.pos.on); heartBeatAxis->animateChangeLine(itemPos.heartBeat.expanded); } |