1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:27:35 +00:00

Window contents move along with the window!

This commit is contained in:
Andreas Kling 2018-10-12 02:41:27 +02:00
parent 64127e0637
commit 6f6f9bd84d
10 changed files with 48 additions and 7 deletions

View file

@ -17,6 +17,11 @@ public:
m_y += dy;
}
void moveBy(const Point& delta)
{
moveBy(delta.x(), delta.y());
}
bool operator==(const Point& other) const
{
return m_x == other.m_x