Commit 7dab7f2f authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: do not react to right-click to mute volume

This is counter-intuitive.
As asked by etix
parent c912d31a
......@@ -210,25 +210,25 @@ void SoundWidget::setMuted( bool mute )
bool SoundWidget::eventFilter( QObject *obj, QEvent *e )
{
VLC_UNUSED( obj );
if (e->type() == QEvent::MouseButtonPress )
if( e->type() == QEvent::MouseButtonPress )
{
if( volumeSlider->orientation() == Qt::Vertical )
QMouseEvent *event = static_cast<QMouseEvent*>(e);
if( event->button() != Qt::RightButton )
{
QMouseEvent *event = static_cast<QMouseEvent*>(e);
showVolumeMenu( event->pos() );
if( volumeSlider->orientation() == Qt::Vertical )
{
showVolumeMenu( event->pos() );
}
else
{
setMuted( !b_is_muted );
}
e->accept();
return true;
}
else
{
setMuted( !b_is_muted );
}
e->accept();
return true;
}
else
{
e->ignore();
return false;
}
e->ignore();
return false;
}
/**
......
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