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

LibGfx+LibGUI: Use constant for line spacing instead of magic number

This commit is contained in:
lanmonster 2022-11-28 09:02:08 -06:00 committed by Andreas Kling
parent 67de1a8148
commit 2b7aa4a971
3 changed files with 6 additions and 7 deletions

View file

@ -25,6 +25,8 @@ namespace Gfx {
class Painter {
public:
static constexpr int LINE_SPACING = 4;
explicit Painter(Gfx::Bitmap&);
~Painter() = default;