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

PixelPaint: Draw layers from the top of LayerList

As pointed out by Andreas, drawing them from the bottom feels odd
since no other list in the UI is bottom-justified. The commit draws
the layers from the top of the list again.
This commit is contained in:
Mustafa Quraish 2021-09-12 20:39:08 -04:00 committed by Andreas Kling
parent 449cbd5ecc
commit 3dccafb2a0
2 changed files with 5 additions and 9 deletions

View file

@ -73,7 +73,6 @@ private:
Gfx::IntPoint m_moving_event_origin;
size_t m_selected_gadget_index { 0 };
int m_total_gadget_height { 0 };
};
}