Skip to content

Commit c1512d4

Browse files
committed
it ddnt run on newer deps of compose.. fixing later
1 parent 413ab53 commit c1512d4

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/desktopMain/kotlin/nestdrop/XmlDataClasses.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ data class NestdropSettings(
3636
@SerialName("Left")
3737
val left: Int,
3838
@SerialName("Width")
39-
val width: Int,
39+
val width: Float,
4040
@SerialName("Height")
41-
val height: Int,
41+
val height: Float,
4242

4343
@XmlElement
4444
@XmlSerialName("Settings_General")
@@ -62,13 +62,13 @@ data class NestdropSettings(
6262
@Serializable
6363
data class SettingsGeneral(
6464
@SerialName("Top")
65-
val top: Int = 0,
65+
val top: Float = 0f,
6666
@SerialName("Left")
67-
val left: Int = 0,
67+
val left: Float = 0f,
6868
@SerialName("Width")
69-
val width: Int = 0,
69+
val width: Float = 0f,
7070
@SerialName("Height")
71-
val height: Int = 0,
71+
val height: Float = 0f,
7272
@SerialName("OpenSettingsAtStart")
7373
val openSettingsAtStart: Boolean = false,
7474
@SerialName("ShowName")

versions.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#### suppress inspection "SpellCheckingInspection" for whole file
88
#### suppress inspection "UnusedProperty" for whole file
99

10-
plugin.org.jetbrains.compose=1.9.3
10+
plugin.org.jetbrains.compose=1.8.2
1111
## # available=1.10.0-alpha01
1212
## # available=1.10.0-alpha02
1313
## # available=1.10.0-alpha03

0 commit comments

Comments
 (0)