diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2009-04-19 08:06:02 -0400 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2009-04-19 08:06:02 -0400 |
| commit | 898f374c8b601bead7050d2cbd30a00547125eaa (patch) | |
| tree | bd1de18e717c0d9b116900427074e34fcf2a19b0 | |
| parent | 4ffe3fbad74872fba0019c0104809a5b235a18c9 (diff) | |
| download | sigen-898f374c8b601bead7050d2cbd30a00547125eaa.tar.gz sigen-898f374c8b601bead7050d2cbd30a00547125eaa.tar.xz sigen-898f374c8b601bead7050d2cbd30a00547125eaa.zip | |
Fix default thickness for the shape
| -rw-r--r-- | sigmodr/widgets/mapeditor/ShapeItem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sigmodr/widgets/mapeditor/ShapeItem.cpp b/sigmodr/widgets/mapeditor/ShapeItem.cpp index 906f6671..e2f5cbfd 100644 --- a/sigmodr/widgets/mapeditor/ShapeItem.cpp +++ b/sigmodr/widgets/mapeditor/ShapeItem.cpp @@ -27,7 +27,7 @@ using namespace Sigmodr::Widgets; ShapeItem::ShapeItem(const Shape shape) : m_shape(shape), m_rect(0, 0, 32, 32), - m_thickness(0), + m_thickness(1), m_rotation(0), m_xShear(1), m_yShear(1) @@ -39,7 +39,7 @@ ShapeItem::ShapeItem(const QPainterPath& path) : m_shape(Path), m_path(path), m_rect(0, 0, 32, 32), - m_thickness(0), + m_thickness(1), m_rotation(0), m_xShear(1), m_yShear(1) |
