diff --git a/src/gui/widgets/group_box.cpp b/src/gui/widgets/group_box.cpp index b7b1a2a86..a98dbeada 100644 --- a/src/gui/widgets/group_box.cpp +++ b/src/gui/widgets/group_box.cpp @@ -89,7 +89,7 @@ void groupBox::modelChanged( void ) void groupBox::mousePressEvent( QMouseEvent * _me ) { - if( _me->y() > 1 && _me->y() < 13 ) + if( _me->y() > 1 && _me->y() < 13 && _me->button() == Qt::LeftButton ) { model()->setValue( !model()->value() ); }