We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 700f9d2 + 2bce9c6 commit 78447a9Copy full SHA for 78447a9
translator/vector/symbol/penstyle.py
@@ -137,6 +137,7 @@ def _get_penstyle_from_line(symbol_layer: QgsLineSymbolLayer) -> dict:
137
* convert_to_point(symbol_layer.width(), symbol_layer.widthUnit())
138
for dash_value in dash_pattern_mul
139
]
140
+ penstyle["dash_pattern"] = dash_pattern
141
142
elif penstyle["stroke"] == "solid" and symbol_layer.useCustomDashPattern():
143
# customized patterns occurs NOT with dash strole but solid stroke
@@ -146,6 +147,6 @@ def _get_penstyle_from_line(symbol_layer: QgsLineSymbolLayer) -> dict:
146
147
for dash_value in symbol_layer.customDashVector()
148
149
- penstyle["dash_pattern"] = dash_pattern
150
151
152
return penstyle
0 commit comments