EntryPushButton: Enter drag mode only for user entries
Maybe the decision should not be up to the button, but for now this will do.
这个提交包含在:
父节点
27ac3155d3
当前提交
2a9292958b
@ -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;
|
||||
|
正在加载...
在新工单中引用
屏蔽一个用户