mirror of
https://github.com/chylex/IntelliJ-Forge-Mapping-Hints.git
synced 2025-06-02 22:34:11 +02:00
Fix settings dialog capitalization & tweak text
This commit is contained in:
parent
ad3b899b1b
commit
ab10f08b52
@ -19,7 +19,7 @@ import javax.swing.event.DocumentListener
|
|||||||
class HintProvider : InlayHintsProvider<PluginSettings>{
|
class HintProvider : InlayHintsProvider<PluginSettings>{
|
||||||
override val key = SettingsKey<PluginSettings>("chylexForgeMappingHints")
|
override val key = SettingsKey<PluginSettings>("chylexForgeMappingHints")
|
||||||
|
|
||||||
override val name = "Minecraft Forge Mapping Suggestions"
|
override val name = "Minecraft Forge mapping suggestions"
|
||||||
override val previewText: String? = null
|
override val previewText: String? = null
|
||||||
|
|
||||||
override fun createConfigurable(settings: PluginSettings): ImmediateConfigurable{
|
override fun createConfigurable(settings: PluginSettings): ImmediateConfigurable{
|
||||||
@ -44,11 +44,11 @@ class HintProvider : InlayHintsProvider<PluginSettings>{
|
|||||||
|
|
||||||
override val cases
|
override val cases
|
||||||
get() = listOf(
|
get() = listOf(
|
||||||
Case("Show Missing", "show.missing", settings::showMissing),
|
Case("Show missing", "show.missing", settings::showMissing),
|
||||||
Case("Show Empty", "show.empty", settings::showEmpty),
|
Case("Show empty", "show.empty", settings::showEmpty),
|
||||||
Case("Show Validated", "show.validated", settings::showValidated),
|
Case("Show validated", "show.validated", settings::showValidated),
|
||||||
Case("Validated Names Use Blue Instead Of Green", "display.validatedblue", settings::validatedColorBlue),
|
Case("Validated names are blue instead of green", "display.validatedblue", settings::validatedColorBlue),
|
||||||
Case("Make Hints Inline", "display.hintsinline", settings::displayHintsInline)
|
Case("Hints are displayed inline", "display.hintsinline", settings::displayHintsInline)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user