File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
clion-plugin/src/main/kotlin/org/utbot/cpp/clion/plugin Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ class UTBotAllProjectSettings(val project: Project) {
86
86
}
87
87
88
88
companion object {
89
- const val clientVersion = " 2022.7 "
89
+ const val clientVersion = " 0.0.1 "
90
90
const val DEFAULT_HOST = " localhost"
91
91
const val DEFAULT_PORT = 2121
92
92
}
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import org.utbot.cpp.clion.plugin.settings.settings
8
8
import java.awt.event.MouseAdapter
9
9
import java.awt.event.MouseEvent
10
10
import javax.swing.tree.DefaultTreeModel
11
+ import org.utbot.cpp.clion.plugin.listeners.SourceFoldersListener
11
12
12
13
open class ProxyProjectViewTree (
13
14
treeModel : DefaultTreeModel ,
@@ -32,6 +33,7 @@ open class ProxyProjectViewTree(
32
33
override fun getCurrentMarkedDirs (): Set <String > = project.settings.storedSettings.sourceDirs
33
34
override fun setCurrentMarkedDirs (value : Set <String >) {
34
35
project.settings.storedSettings.sourceDirs = value.toMutableSet()
36
+ project.messageBus.syncPublisher(SourceFoldersListener .TOPIC ).sourceFoldersChanged(value)
35
37
}
36
38
}
37
39
You can’t perform that action at this time.
0 commit comments