作図ソフト dia の改良版
Révision | 856c00d55888f24eff4dd0da6ecd055b56abe725 (tree) |
---|---|
l'heure | 2004-07-09 05:43:15 |
Auteur | Steffen Macke <sdteffen@src....> |
Commiter | Steffen Macke |
linewidth is now working for PS_SOLID
@@ -1,3 +1,7 @@ | ||
1 | +2004-07-08 Steffen Macke <sdteffen@web.de> | |
2 | + | |
3 | + * plug-ins/wmf/wmf.cpp (UsePen): linewidth is now working for PS_SOLID | |
4 | + | |
1 | 5 | 2004-07-05 Hans Breuer <hans@breuer.org> |
2 | 6 | |
3 | 7 | * */*.[hc] */*/*.c : a bunch of changes to make Dia compile with |
@@ -149,6 +149,9 @@ UsePen(WmfRenderer* renderer, Color* colour) | ||
149 | 149 | |
150 | 150 | switch (renderer->fnPenStyle & PS_STYLE_MASK) { |
151 | 151 | case PS_SOLID : |
152 | + num_dashes = 2; | |
153 | + dashes[0] = dashlen; | |
154 | + dashes[1] = 0; | |
152 | 155 | break; |
153 | 156 | case PS_DASH : |
154 | 157 | num_dashes = 2; |