MacOS X Firebird Updates:

- bug 222688 (tabbrowser.xml)
- downloads options panel is broken (pref-downloads.js)
This commit is contained in:
ben%bengoodger.com 2003-10-24 07:43:01 +00:00
parent 2e8ab0a9e1
commit 5caca58d02
3 changed files with 8 additions and 3 deletions

View File

@ -28,7 +28,12 @@
</xul:vbox>
#endif
</content>
<implementation>
</implementation>
</binding>
</binding>
</bindings>

View File

@ -85,7 +85,7 @@
ondragdrop="nsDragAndDrop.drop(event, this.parentNode.parentNode.parentNode);
event.stopPropagation();"
xbl:inherits="onnewtab"
ondblclick="if (event.target.localName == 'tabs') this.parentNode.parentNode.parentNode.selectedTab = this.parentNode.parentNode.parentNode.addTab();"
ondblclick="if (event.originalTarget.localName != 'tab') this.parentNode.parentNode.parentNode.selectedTab = this.parentNode.parentNode.parentNode.addTab();"
onclosetab="var node = this.parentNode;
while (node.localName != 'tabbrowser')
node = node.parentNode;

View File

@ -288,7 +288,7 @@ function getSpecialFolderKey(aFolderType)
return aFolderType == "Desktop" ? "DeskV" : "Pers";
#endif
#ifdef XP_MACOSX
return aFolderType == "Desktop" ? "Desk" : "UsrDocs";
return aFolderType == "Desktop" ? "UsrDsk" : "UsrDocs";
#endif
return "Home";
}