fix: Inline variable

This commit is contained in:
Myzel394 2023-12-16 21:07:41 +01:00
parent b5ae6a735d
commit a0640d13ab
No known key found for this signature in database
GPG Key ID: 79CC92F37B3E1A2B

View File

@ -70,8 +70,7 @@ fun RecordingControl(
val stack = RandomStack.of(arrayOf(1, 2, 3).asIterable())
while (!stack.isEmpty()) {
val next = stack.popRandom()
when (next) {
when (stack.popRandom()) {
1 -> {
deleteButtonAlphaIsIn = true
}