do the same steps as above exept go to tab\tabmix.xml
around lines 707-716, replace
Code:
if (this.mTab.autoReloadEnabled){
if (this.mTab.autoReloadURI == this.mBrowser.currentURI.spec) {
if (this.mTab.autoReloadTimerID)
clearTimeout(this.mTab.autoReloadTimerID);
this.mTab.linkedBrowser.contentWindow.scrollTo(this.mTab.linkedBrowser.curScrollX, this.mTab.linkedBrowser.curScrollY);
this.mTab.autoReloadTimerID=setTimeout("reloadPage(\"" + this.mTab.id + "\");", this.mTab.autoReloadTime*1000);
}
else
this.mTabBrowser.disableAutoReload(this.mTab);
}
with
Code:
if (this.mTab.autoReloadEnabled){
if (this.mTab.autoReloadTimerID)
clearTimeout(this.mTab.autoReloadTimerID);
this.mTab.linkedBrowser.contentWindow.scrollTo(this.mTab.linkedBrowser.curScrollX, this.mTab.linkedBrowser.curScrollY);
this.mTab.autoReloadTimerID=setTimeout("reloadPage(\"" + this.mTab.id + "\");", this.mTab.autoReloadTime*1000);
}
btw, this code is found twice in that file but you just need to replace it the first time you see it if you are using FF1.5 and above