We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aecf889 commit ee379e4Copy full SHA for ee379e4
1 file changed
app/src/main/java/org/andbootmgr/app/CreatePartFlow.kt
@@ -99,7 +99,7 @@ class CreatePartFlow(private val desiredStartSector: Long?): WizardFlow() {
99
private class CreatePartDataHolder(val vm: WizardState, val desiredStartSector: Long?) {
100
var meta by mutableStateOf<SDUtils.SDPartitionMeta?>(null) // metaonsd only
101
lateinit var p: SDUtils.Partition.FreeSpace // metaonsd only
102
- var freeSpace: Long? = null // !metaonsd only
+ var freeSpace by mutableLongStateOf(null) // !metaonsd only
103
var startSectorRelative = 0L // metaonsd only
104
var endSectorRelative = 0L // metaonsd only
105
var desiredSize = 0L // !metaonsd only
@@ -947,4 +947,4 @@ private fun Flash(c: CreatePartDataHolder) {
947
}
948
949
950
-}
+}
0 commit comments