EntryPushButton: Don't allow moving dynamic buttons

Este commit está contenido en:
Albert S. 2020-10-11 15:38:12 +02:00
padre b13815a924
commit 2df37212dd
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -116,7 +116,7 @@ void EntryPushButton::mousePressEvent(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;
}