Add hide()

This commit is contained in:
Jonas Kvinge
2018-10-02 00:58:46 +02:00
parent 1fbfabdf66
commit 044cf4624a
2 changed files with 7 additions and 6 deletions

View File

@@ -38,9 +38,10 @@
TrackSliderSlider::TrackSliderSlider(QWidget* parent)
: QSlider(parent),
popup_(new TrackSliderPopup(window())),
mouse_hover_seconds_(0)
{
mouse_hover_seconds_(0) {
setMouseTracking(true);
popup_->hide();
connect(this, SIGNAL(valueChanged(int)), SLOT(UpdateDeltaTime()));
}