Commit b977c6e1 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: SoundSlider: fix undefined character escape sequence

parent 41e0bd59
......@@ -699,7 +699,7 @@ void SoundSlider::mouseMoveEvent( QMouseEvent *event )
{
int i = ( ( event->x() - paddingL ) * maximum() + 40 ) / WLENGTH;
i = __MIN( __MAX( 0, i ), maximum() );
setToolTip( QString("%1 \%" ).arg( i ) );
setToolTip( QString("%1 %" ).arg( i ) );
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment