feat: cleaner minmode

This commit is contained in:
aro 2023-01-06 18:59:07 +01:00
parent 80be99e17f
commit ec1248e724
2 changed files with 1 additions and 2 deletions

View file

@ -55,6 +55,6 @@ fun DisplayEntries(
DefaultDisplay() DefaultDisplay()
} else { } else {
InputEntries(minmode, watcherManager, onEntryClick) InputEntries(minmode, watcherManager, onEntryClick)
OutputEntries(minmode, watcherManager, currentClick, outputs) OutputEntries(watcherManager, currentClick, outputs)
} }
} }

View file

@ -22,7 +22,6 @@ import kotlin.io.path.pathString
@OptIn(ExperimentalUnitApi::class) @OptIn(ExperimentalUnitApi::class)
@Composable @Composable
fun OutputEntries( fun OutputEntries(
minmode: Boolean,
watcherManager: WatcherManager, watcherManager: WatcherManager,
currentClick: Int, currentClick: Int,
outputs: MutableList<Path> outputs: MutableList<Path>