From 862d8ce48d4c3bd269cd6d6f11c7b1c60b44e421 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 15 Jan 2022 01:29:15 +0000 Subject: [PATCH] Default TEXT_ATTRIBUTES angles to tenths of a degree, not radians. --- include/font/text_attributes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/font/text_attributes.h b/include/font/text_attributes.h index eb5dffd59a..54108c2aa7 100644 --- a/include/font/text_attributes.h +++ b/include/font/text_attributes.h @@ -65,7 +65,7 @@ public: KIFONT::FONT* m_Font = nullptr; GR_TEXT_H_ALIGN_T m_Halign = GR_TEXT_H_ALIGN_CENTER; GR_TEXT_V_ALIGN_T m_Valign = GR_TEXT_V_ALIGN_CENTER; - EDA_ANGLE m_Angle; + EDA_ANGLE m_Angle = ANGLE_0; double m_LineSpacing = 1.0; int m_StrokeWidth = 0; bool m_Italic = false;