OPENIDE disable feedback surveys

This commit is contained in:
Nikita Iarychenko
2026-01-29 12:17:21 +04:00
parent ddea8200df
commit 296218a7bc
2 changed files with 4 additions and 3 deletions

View File

@@ -25,7 +25,7 @@
<editorFactoryMouseListener implementation="com.intellij.platform.feedback.impl.track.EditorInputEventTracker"/>
<editorFactoryMouseMotionListener implementation="com.intellij.platform.feedback.impl.track.EditorInputEventTracker"/>
<registryKey key="platform.feedback" defaultValue="true" description="Enable to collect user feedback"/>
<registryKey key="platform.feedback" defaultValue="false" description="Enable to collect user feedback"/>
<registryKey key="platform.feedback.time.to.show.notification" defaultValue="600"
description="Explicitly sets the number of seconds until the feedback notification is displayed."/>
<registryKey key="platform.feedback.ignore.common.conditions.for.all.surveys" defaultValue="false"

View File

@@ -16,10 +16,11 @@ sealed class FeedbackSurveyType<T : NotificationBasedFeedbackSurveyConfig> {
@RequiresBackgroundThread
internal fun isSuitableToShow(project: Project): Boolean {
return isSuitableToShow(feedbackSurveyConfig, project)
return false
//return isSuitableToShow(feedbackSurveyConfig, project)
}
internal fun showNotification(project: Project, forTest: Boolean) {
showNotification(this, project, forTest)
//showNotification(this, project, forTest)
}
}