Add switch case for impossible enum

It's already treated above and the compiler just does not see it.
This commit is contained in:
Aleix Pol 2021-05-13 17:07:18 +02:00
parent 6176a63d76
commit 1754744297

View file

@ -247,6 +247,8 @@ void WindowsRunner::Run(const QString &id, const QString &actionId)
case KeepBelowAction:
client->setKeepBelow(!client->keepBelow());
break;
case ActivateDesktopAction:
Q_UNREACHABLE();
}
}