This commit is contained in:
Ehsan Akhgari 2010-12-03 13:57:29 -05:00
Родитель e88ba7686c b5fcdd5737
Коммит cfd6192204
3 изменённых файлов: 12 добавлений и 53 удалений

Просмотреть файл

@ -1080,10 +1080,10 @@ GroupItem.prototype = Utils.extend(new Item(), new Subscribable(), {
return: 'widthAndColumns',
count: count || this._children.length
};
let arrObj = Items.arrange(null, bb, options);
let shouldStack = arrObj.childWidth < TabItems.minTabWidth * 1.35;
this._columns = shouldStack ? null : arrObj.columns;
let {childWidth, columns} = Items.arrange(null, bb, options);
let shouldStack = childWidth < TabItems.minTabWidth * 1.35;
this._columns = shouldStack ? null : columns;
return shouldStack;
},
@ -1532,7 +1532,6 @@ let GroupItems = {
_arrangePaused: false,
_arrangesPending: [],
_removingHiddenGroups: false,
_delayedModUpdates: [],
// ----------
// Function: init
@ -1544,18 +1543,9 @@ let GroupItems = {
self._handleAttrModified(xulTab);
}
// make sure any closed tabs are removed from the delay update list
function handleClose(xulTab) {
let idx = self._delayedModUpdates.indexOf(xulTab);
if (idx != -1)
self._delayedModUpdates.splice(idx, 1);
}
AllTabs.register("attrModified", handleAttrModified);
AllTabs.register("close", handleClose);
this._cleanupFunctions.push(function() {
AllTabs.unregister("attrModified", handleAttrModified);
AllTabs.unregister("close", handleClose);
});
},
@ -1622,30 +1612,6 @@ let GroupItems = {
// Function: _handleAttrModified
// watch for icon changes on app tabs
_handleAttrModified: function GroupItems__handleAttrModified(xulTab) {
if (!UI.isTabViewVisible()) {
if (this._delayedModUpdates.indexOf(xulTab) == -1) {
this._delayedModUpdates.push(xulTab);
}
} else
this._updateAppTabIcons(xulTab);
},
// ----------
// Function: flushTabUpdates
// Update apptab icons based on xulTabs which have been updated
// while the TabView hasn't been visible
flushAppTabUpdates: function GroupItems_flushAppTabUpdates() {
let self = this;
this._delayedModUpdates.forEach(function(xulTab) {
self._updateAppTabIcons(xulTab);
});
this._delayedModUpdates = [];
},
// ----------
// Function: _updateAppTabIcons
// Update images of any apptab icons that point to passed in xultab
_updateAppTabIcons: function GroupItems__updateAppTabIcons(xulTab) {
if (xulTab.ownerDocument.defaultView != gWindow || !xulTab.pinned)
return;
@ -1660,7 +1626,7 @@ let GroupItems = {
$icon.attr("src", iconUrl);
});
});
},
},
// ----------
// Function: addAppTab

Просмотреть файл

@ -853,9 +853,12 @@ let TabItems = {
Date.now() - this._lastUpdateTime < this._heartbeatTiming
);
if (shouldDefer) {
if (!tab.tabItem.reconnected)
this.reconnect(tab.tabItem);
let isCurrentTab = (
!UI.isTabViewVisible() &&
tab == gBrowser.selectedTab
);
if (shouldDefer && !isCurrentTab) {
if (this._tabsWaitingForUpdate.indexOf(tab) == -1)
this._tabsWaitingForUpdate.push(tab);
this.startHeartbeat();
@ -1249,9 +1252,7 @@ TabCanvas.prototype = {
ctx.save();
ctx.scale(scaler, scaler);
try{
ctx.drawWindow(fromWin, fromWin.scrollX, fromWin.scrollY,
w/scaler, h/scaler, "#fff",
Ci.nsIDOMCanvasRenderingContext2D.DRAWWINDOW_DO_NOT_FLUSH);
ctx.drawWindow(fromWin, fromWin.scrollX, fromWin.scrollY, w/scaler, h/scaler, "#fff");
} catch(e) {
Utils.error('paint', e);
}

Просмотреть файл

@ -401,11 +401,6 @@ let UI = {
if (this.isTabViewVisible())
return;
// Update the tab we're looking at, so that the correct image is used
// to zoom out to the TabView.
if (!gBrowser.selectedTab.pinned)
TabItems._update(gBrowser.selectedTab);
// initialize the direction of the page
this._initPageDirection();
@ -462,9 +457,6 @@ let UI = {
dispatchEvent(event);
}
// Flush pending updates
GroupItems.flushAppTabUpdates();
TabItems.resumePainting();
},