Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
codemakerai-dev committed Jul 4, 2024
1 parent d9fa33b commit b498944
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class AppSettingsComponent(project: Project) {
private val predictiveGenerationEnabledCheck = JBCheckBox()
private val extendedSourceContextEnabledCheck = JBCheckBox()
private val extendedSourceContextDepthCombo = ComboBox(arrayOf(1, 2, 3))
private val assistantLanguageCombo = ComboBox(arrayOf("default") + LanguageCode.entries.map { it.name })
private val assistantLanguageCombo = ComboBox(arrayOf(defaultAssistantLanguage) + LanguageCode.entries.map { it.name })
private val assistantActionsEnabledCheck = JBCheckBox()
private val assistantCodeVisionEnabledCheck = JBCheckBox()
private val syntaxAutocorrectionEnabledCheck = JBCheckBox()
Expand Down

0 comments on commit b498944

Please sign in to comment.