Handle double click event in EventFilterInterface too

This commit is contained in:
Sergio Martins
2022-07-03 22:21:57 +01:00
parent 7b9bde123b
commit 35c1517709
3 changed files with 14 additions and 0 deletions

View File

@@ -48,6 +48,12 @@ public:
{
return false;
}
/// @brief Override to handle when a view receives a mouse double click event
virtual bool onMouseDoubleClick(View *, QMouseEvent *)
{
return false;
}
};
}