[fix] Enable Tracer in StorageESP by default

Maybe people will stop saying there is no tracer option now
This commit is contained in:
Dominika 2021-01-21 17:27:04 -05:00
parent 8f291d8c5b
commit 167a4d2280
No known key found for this signature in database
GPG Key ID: B4A5A6DCA70F861F
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ internal object StorageESP : Module(
/* Render settings */
private val filled by setting("Filled", true, { page == Page.RENDER })
private val outline by setting("Outline", true, { page == Page.RENDER })
private val tracer by setting("Tracer", false, { page == Page.RENDER })
private val tracer by setting("Tracer", true, { page == Page.RENDER })
private val aFilled by setting("FilledAlpha", 31, 0..255, 1, { page == Page.RENDER && filled })
private val aOutline by setting("OutlineAlpha", 127, 0..255, 1, { page == Page.RENDER && outline })
private val aTracer by setting("TracerAlpha", 200, 0..255, 1, { page == Page.RENDER && tracer })