EntryPushButton: Enter drag mode only for user entries
Maybe the decision should not be up to the button, but for now this will do.
此提交包含在:
@ -77,6 +77,10 @@ void EntryPushButton::mousePressEvent(QMouseEvent *event)
|
||||
|
||||
void EntryPushButton::mouseMoveEvent(QMouseEvent *event)
|
||||
{
|
||||
if(! this->config.userEntry)
|
||||
{
|
||||
return;
|
||||
}
|
||||
if(!(event->buttons() & Qt::LeftButton))
|
||||
{
|
||||
return;
|
||||
|
新增問題並參考
封鎖使用者