EntryPushButton: Don't allow moving dynamic buttons

这个提交包含在:
2020-10-11 15:38:12 +02:00
父节点 b13815a924
当前提交 2df37212dd

查看文件

@@ -116,7 +116,7 @@ void EntryPushButton::mousePressEvent(QMouseEvent *event)
void EntryPushButton::mouseMoveEvent(QMouseEvent *event) void EntryPushButton::mouseMoveEvent(QMouseEvent *event)
{ {
if(this->config.type == EntryType::SYSTEM) if(this->config.type == EntryType::SYSTEM || this->config.type == EntryType::DYNAMIC)
{ {
return; return;
} }