File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
core/src/main/kotlin/cc/unitmesh/devti/gui/chat/ui/file Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,13 @@ class WorkspaceFilePanel(private val project: Project) : JPanel(BorderLayout())
26
26
27
27
filesPanel.isOpaque = false
28
28
filesPanel.add(createAddButton())
29
- filesPanel.add(createConfigButton ())
29
+ filesPanel.add(createMcpConfigButton ())
30
30
31
31
add(filesPanel, BorderLayout .NORTH )
32
32
isOpaque = false
33
33
}
34
34
35
- private fun createConfigButton (): JComponent {
35
+ private fun createMcpConfigButton (): JComponent {
36
36
return createActionButton(McpConfigAction ())
37
37
}
38
38
@@ -82,7 +82,7 @@ class WorkspaceFilePanel(private val project: Project) : JPanel(BorderLayout())
82
82
private fun updateFilesPanel () {
83
83
filesPanel.removeAll()
84
84
filesPanel.add(createAddButton())
85
- filesPanel.add(createConfigButton ())
85
+ filesPanel.add(createMcpConfigButton ())
86
86
87
87
for (filePresentation in workspaceFiles) {
88
88
val fileLabel = FileItemPanel (project, filePresentation) {
You can’t perform that action at this time.
0 commit comments