mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 06:50:54 +07:00
OPENIDE disable feedback surveys
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user