diff --git a/modules/gui/qt4/util/input_slider.cpp b/modules/gui/qt4/util/input_slider.cpp index 048b7f204083a1dbd1bc3607d79d81e192489c57..58819ba9d3e0b39762d0a360a9d683b178691caf 100644 --- a/modules/gui/qt4/util/input_slider.cpp +++ b/modules/gui/qt4/util/input_slider.cpp @@ -303,8 +303,10 @@ void SeekSlider::mouseMoveEvent( QMouseEvent *event ) QPoint target( event->globalX() - ( event->x() - posX ), QWidget::mapToGlobal( QPoint( 0, 0 ) ).y() ); - secstotimestr( psz_length, ( ( posX - margin ) * inputLength ) / ( size().width() - handleLength() ) ); - mTimeTooltip->setTip( target, psz_length, chapterLabel ); + if( likely( size().width() > handleLength() ) ) { + secstotimestr( psz_length, ( ( posX - margin ) * inputLength ) / ( size().width() - handleLength() ) ); + mTimeTooltip->setTip( target, psz_length, chapterLabel ); + } } event->accept(); }