Skip to content

Commit 64da378

Browse files
committed
Bug 1395438 - The bookmarks panel should fade out when it times out, not close abruptly. r=adw
MozReview-Commit-ID: 2alzsK8M9Xb UltraBlame original commit: 2b3fcd296b8b98cc39b001daf89177998a215321
1 parent f8010bb commit 64da378

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

browser/base/content/browser-places.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ var StarUI = {
250250
clearTimeout(this._autoCloseTimer);
251251
this._autoCloseTimer = setTimeout(() => {
252252
if (!this.panel.mozMatchesSelector(":hover")) {
253-
this.panel.hidePopup();
253+
this.panel.hidePopup(true);
254254
}
255255
}, delay);
256256
this._autoCloseTimerEnabled = true;

0 commit comments

Comments
 (0)