Skip to content

Commit 4c531ca

Browse files
Change background task labels
1 parent 0486188 commit 4c531ca

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ide-common/src/main/kotlin/org/digma/intellij/plugin/ui/service/ErrorsViewService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ class ErrorsViewService(project: Project) : AbstractViewService(project) {
174174
fun refreshErrorsModel() {
175175
val scope = model.scope
176176
if (scope is MethodScope) {
177-
Backgroundable.ensureBackground(project, "Refresh errors model") {
177+
Backgroundable.ensureBackground(project, "Refresh errors list") {
178178
updateErrorsModel(scope.getMethodInfo())
179179
}
180180
}

ide-common/src/main/kotlin/org/digma/intellij/plugin/ui/service/InsightsViewService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ class InsightsViewService(project: Project) : AbstractViewService(project) {
169169
fun refreshInsightsModel() {
170170
val scope = model.scope
171171
if (scope is MethodScope) {
172-
Backgroundable.ensureBackground(project, "Refresh insights model") {
172+
Backgroundable.ensureBackground(project, "Refresh insights list") {
173173
updateInsightsModel(scope.getMethodInfo())
174174
}
175175
}

ide-common/src/main/kotlin/org/digma/intellij/plugin/ui/service/RefreshService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class RefreshService(private val project: Project) {
2323
if (scope is MethodScope) {
2424
val documentInfoContainer = DocumentInfoService.getInstance(project).getDocumentInfoByMethodInfo(scope.getMethodInfo())
2525

26-
Backgroundable.ensureBackground(project, "Refresh insights and errors list") {
26+
Backgroundable.ensureBackground(project, "Refreshing insights") {
2727
val selectedDocument = selectedTextEditor?.document
2828

2929
if (selectedDocument != null) {

0 commit comments

Comments
 (0)