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 b8b1d4f commit 0299693Copy full SHA for 0299693
src/main/kotlin/META-INF/MANIFEST.MF
@@ -0,0 +1,3 @@
1
+Manifest-Version: 1.0
2
+Main-Class: ch.bildspur.annotator.Main
3
+
src/main/kotlin/ch/bildspur/annotator/ui/MainViewController.kt
@@ -135,7 +135,7 @@ class MainViewController {
135
sb.append("$path ${image.polygons.size} ")
136
for (polygon in image.polygons) {
137
val rect = getRectData(polygon)
138
- sb.append("${rect.x} ${rect.y} ${rect.width} ${rect.height} ")
+ sb.append("${rect.x.toInt()} ${rect.y.toInt()} ${rect.width.toInt()} ${rect.height.toInt()} ")
139
}
140
sb.appendln()
141
0 commit comments