diff --git a/resources/mmv/ui/mmv.ui.stripeButtons.js b/resources/mmv/ui/mmv.ui.stripeButtons.js index d2af4035e..d864a6a45 100644 --- a/resources/mmv/ui/mmv.ui.stripeButtons.js +++ b/resources/mmv/ui/mmv.ui.stripeButtons.js @@ -345,11 +345,13 @@ buttons.$reuse.removeClass( 'open' ); } ); - this.readyToShowFeedbackTooltip = false; - this.setTimer( 'feedbackTooltip.show', function () { - this.readyToShowFeedbackTooltip = true; - this.maybeDisplayTooltip(); - }, this.feedbackSettings.tooltipDelay * 1000 ); + if ( this.shouldShowFeedbackSurvey() ) { + this.readyToShowFeedbackTooltip = false; + this.setTimer( 'feedbackTooltip.show', function () { + this.readyToShowFeedbackTooltip = true; + this.maybeDisplayTooltip(); + }, this.feedbackSettings.tooltipDelay * 1000 ); + } }; /**