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.
1 parent 6f95685 commit 8e59d96Copy full SHA for 8e59d96
lib/com/hydrologis/smash/import_export_plugins/utils/gpx_kml_utilities.dart
@@ -230,6 +230,10 @@ class KmlExporter {
230
// int parsedColor = ColorUtilities.toColor(color);
231
LogProperty? logProperties = db.getLogProperties(log.id!);
232
String hexColor = logProperties!.color ?? "#FF0000";
233
+
234
+ // remove colortables
235
+ hexColor = "FF" + hexColor.split("@")[0].substring(1);
236
237
sB += "<color>${hexColor}</color>\n";
238
sB += "<width>${logProperties.width}</width>\n";
239
sB += "</LineStyle>\n";
0 commit comments