From db3096c4b6f2e17bc0d313ede25414a0c8318a94 Mon Sep 17 00:00:00 2001 From: Philipp von Weitershausen Date: Thu, 23 Sep 2010 18:09:55 +0200 Subject: [PATCH] Bug 598898 - Fix Sync notifications after add-on bar replaced the status bar. r=gavin a=blocking-beta7 --- browser/base/content/browser-syncui.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/browser/base/content/browser-syncui.js b/browser/base/content/browser-syncui.js index 9eeb0ed93480..496b415f8745 100644 --- a/browser/base/content/browser-syncui.js +++ b/browser/base/content/browser-syncui.js @@ -96,8 +96,7 @@ let gSyncUI = { notificationbox.setAttribute("flex", "1"); let bottombox = document.getElementById("browser-bottombox"); - let statusbar = document.getElementById("status-bar"); - bottombox.insertBefore(notificationbox, statusbar); + bottombox.insertBefore(notificationbox, bottombox.firstChild); // Force a style flush to ensure that our binding is attached. notificationbox.clientTop;