diff --git a/src/apps/mediaplayer/interface/TransportControlGroup.cpp b/src/apps/mediaplayer/interface/TransportControlGroup.cpp
index 1aa4c60..9e1e1f5 100644
a
|
b
|
|
17 | 17 | #include <Shape.h> |
18 | 18 | #include <SpaceLayoutItem.h> |
19 | 19 | #include <String.h> |
| 20 | #include <ToolTipManager.h> |
20 | 21 | |
21 | 22 | #include "DurationView.h" |
22 | 23 | #include "PeakView.h" |
… |
… |
TransportControlGroup::SetPosition(float value, bigtime_t position,
|
483 | 484 | fPositionToolTip->Update(position, duration); |
484 | 485 | fDurationView->Update(position, duration); |
485 | 486 | |
486 | | if (fSeekSlider->IsTracking()) |
| 487 | if (fSeekSlider->IsTracking()) { |
| 488 | BToolTipManager *manager = BToolTipManager::Manager(); |
| 489 | manager->ShowTip(fPositionToolTip, fPositionToolTip->MouseRelativeLocation(), this); |
487 | 490 | return; |
| 491 | } |
488 | 492 | |
489 | 493 | fSeekSlider->SetPosition(value); |
490 | 494 | } |
… |
… |
TransportControlGroup::_CreateSpeakerShape(float height) const
|
845 | 849 | |
846 | 850 | return shape; |
847 | 851 | } |
848 | | |