Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,16 @@ private boolean shouldHideBubble() {
}

private void openBubble() {
scrollUpdater.cancel();
scrollUpdater.scheduleRepeating(SCROLL_UPDATER_INTERVAL);
restartScrollUpdater();
setHidden(false);
fireBubbleMovedEvent(getHelpElement().getId());
}

private void restartScrollUpdater() {
scrollUpdater.cancel();
scrollUpdater.scheduleRepeating(SCROLL_UPDATER_INTERVAL);
}

private void closeBubble() {
scrollUpdater.cancel();
setHidden(true);
Expand All @@ -165,6 +169,7 @@ private void closeBubble() {

public void showHelpBubble(String componentId, String helpText, Placement placement) {
bubble.showHelpBubble(componentId, helpText, placement);
restartScrollUpdater();
}

public void hideHelpBubble() {
Expand Down