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 2086ce4 commit 8064b6dCopy full SHA for 8064b6d
src/main/kotlin/com/github/patou/gitmoji/GitMojiConfig.kt
@@ -90,7 +90,7 @@ class GitMojiConfig(private val project: Project) : SearchableConfigurable {
90
insertInCursorPosition.isSelected = insertInCursorPositionConfig
91
includeGitMojiDescription.isSelected = includeGitMojiDescriptionConfig
92
textAfterUnicode.selectedIndex = when (textAfterUnicodeOptions.indexOf(textAfterUnicodeConfig)) {
93
- -1 -> if (textAfterUnicodeConfig.equals(" ")) 1 else 0
+ -1 -> if (textAfterUnicodeConfig == " ") 1 else 0
94
else -> textAfterUnicodeOptions.indexOf(textAfterUnicodeConfig)
95
}
96
0 commit comments