EntryPushButton: Enter drag mode only for user entries
Maybe the decision should not be up to the button, but for now this will do.
This commit is contained in:
parent
27ac3155d3
commit
2a9292958b
@ -77,6 +77,10 @@ void EntryPushButton::mousePressEvent(QMouseEvent *event)
|
|||||||
|
|
||||||
void EntryPushButton::mouseMoveEvent(QMouseEvent *event)
|
void EntryPushButton::mouseMoveEvent(QMouseEvent *event)
|
||||||
{
|
{
|
||||||
|
if(! this->config.userEntry)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
if(!(event->buttons() & Qt::LeftButton))
|
if(!(event->buttons() & Qt::LeftButton))
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user