diff --git a/Userland/Libraries/LibGfx/Font/ScaledFont.h b/Userland/Libraries/LibGfx/Font/ScaledFont.h index fb3a00f745..e15e83a781 100644 --- a/Userland/Libraries/LibGfx/Font/ScaledFont.h +++ b/Userland/Libraries/LibGfx/Font/ScaledFont.h @@ -12,9 +12,6 @@ #include #include -#define POINTS_PER_INCH 72.0f -#define DEFAULT_DPI 96 - namespace Gfx { struct GlyphIndexWithSubpixelOffset { diff --git a/Userland/Libraries/LibGfx/Font/VectorFont.h b/Userland/Libraries/LibGfx/Font/VectorFont.h index 14b3d337ab..8d295d5af9 100644 --- a/Userland/Libraries/LibGfx/Font/VectorFont.h +++ b/Userland/Libraries/LibGfx/Font/VectorFont.h @@ -12,6 +12,9 @@ #include #include +#define POINTS_PER_INCH 72.0f +#define DEFAULT_DPI 96 + namespace Gfx { class ScaledFont;