FIX: limit the m_thickness_min value to 0.01

jira:STUDIO-7173

github: #4151
Change-Id: I612e8e578683eba3e1cf987428722778a472e2fe
This commit is contained in:
Mack 2024-05-28 17:12:23 +08:00 committed by Lane.Wei
parent f13144d6a9
commit e630c0672a
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ private:
bool m_bold = true;
bool m_italic = false;
float m_thickness = 2.f;
float m_thickness_min = 0.f;
float m_thickness_min = 0.01f;
float m_thickness_max = 999.99f;
float m_embeded_depth = 0.f;
float m_rotate_angle = 0;