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 b9d2fd3 commit 6aba413Copy full SHA for 6aba413
src/desktopMain/kotlin/nestdrop/QueueType.kt
@@ -1,6 +1,7 @@
1
package nestdrop
2
3
enum class QueueType {
4
+ Undefined,
5
Preset,
6
Sprite,
7
Text,
src/desktopMain/kotlin/nestdrop/loadQueues.kt
@@ -60,7 +60,7 @@ suspend fun loadNestdropConfig(
60
Queue(
61
index = queue.index,
62
name = queue.name,
63
- type = QueueType.entries[queue.type - 1],
+ type = QueueType.entries[queue.type],
64
open = queue.open,
65
deck = queue.deck!!,
66
presets = queue.presets.mapIndexed() { i, p ->
0 commit comments