File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
app/src/main/java/org/andbootmgr/app Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ class CreatePartFlow(private val desiredStartSector: Long?): WizardFlow() {
9999private class CreatePartDataHolder (val vm : WizardState , val desiredStartSector : Long? ) {
100100 var meta by mutableStateOf<SDUtils .SDPartitionMeta ?>(null ) // metaonsd only
101101 lateinit var p: SDUtils .Partition .FreeSpace // metaonsd only
102- var freeSpace: Long? = null // !metaonsd only
102+ var freeSpace by mutableLongStateOf( null ) // !metaonsd only
103103 var startSectorRelative = 0L // metaonsd only
104104 var endSectorRelative = 0L // metaonsd only
105105 var desiredSize = 0L // !metaonsd only
@@ -947,4 +947,4 @@ private fun Flash(c: CreatePartDataHolder) {
947947 }
948948 }
949949 }
950- }
950+ }
You can’t perform that action at this time.
0 commit comments