From f4d3670932d5cc20c19b76de66a93eb4a508b51f Mon Sep 17 00:00:00 2001 From: syrja Date: Thu, 22 Aug 2019 11:21:52 +0300 Subject: Fixed percentage scaling in symbol loading. --- symbol.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'symbol.cpp') diff --git a/symbol.cpp b/symbol.cpp index 4f09fde..1af5764 100644 --- a/symbol.cpp +++ b/symbol.cpp @@ -103,7 +103,7 @@ void SymEditSymbol::Load(const QString& buffer) { size = string.mid(1).toDouble(); unit = (type == 'P' ? 2 : (size < 0.0 ? 1 : 0)); - size = fabs(size) * (type == 'P' ? 10.0 : 1.0); + size = fabs(size) * (type == 'P' ? 0.1 : 1.0); } else if ( type == 'G' ) angle = value; -- cgit v1.2.3