aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--symbol.cpp2
1 files changed, 1 insertions, 1 deletions
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;