diff options
Diffstat (limited to 'Userland/Libraries/LibGfx/Font.h')
-rw-r--r-- | Userland/Libraries/LibGfx/Font.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGfx/Font.h b/Userland/Libraries/LibGfx/Font.h index e9264de823..441e9dbad9 100644 --- a/Userland/Libraries/LibGfx/Font.h +++ b/Userland/Libraries/LibGfx/Font.h @@ -95,6 +95,11 @@ struct FontMetrics { class Font : public RefCounted<Font> { public: + enum class AllowInexactSizeMatch { + No, + Yes, + }; + virtual NonnullRefPtr<Font> clone() const = 0; virtual ~Font() {}; |