Remove the last Qt event filter from the backend

Ported to our own event filter
This commit is contained in:
Sergio Martins
2022-07-06 23:08:21 +01:00
parent 572b62aa9a
commit 54802ed856
5 changed files with 55 additions and 22 deletions

View File

@@ -69,6 +69,12 @@ public:
{
return false;
}
/// @brief Override to handle a move event
virtual bool onMoveEvent(View *)
{
return false;
}
};
}