From de4c374197166b206174657c7fdccec1fffe7489 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Tue, 10 Feb 2015 11:24:45 +0300 Subject: [PATCH] win32 fonts size --- src/dlangui/graphics/fonts.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dlangui/graphics/fonts.d b/src/dlangui/graphics/fonts.d index 2213833c..553ba2b3 100644 --- a/src/dlangui/graphics/fonts.d +++ b/src/dlangui/graphics/fonts.d @@ -86,7 +86,7 @@ struct CustomCharProps { this.color = color; this.textFlags = 0; } - this(uint color, bool underline, bool strikeThrough) { + this(uint color, bool underline, bool strikeThrough = false) { this.color = color; if (underline) this.textFlags |= TextFlag.Underline;