mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 16:58:38 +09:00
Merge remote-tracking branch 'origin/tracking' into custom
This commit is contained in:
commit
1e37e713c7
5 changed files with 9 additions and 6 deletions
|
|
@ -73,8 +73,9 @@
|
|||
#ifdef GKMEDIAS_SHARED_LIBRARY
|
||||
@BINPATH@/@DLL_PREFIX@gkmedias@DLL_SUFFIX@
|
||||
#endif
|
||||
; Hunspell
|
||||
#ifndef MOZ_SYSTEM_HUNSPELL
|
||||
@BINPATH@/@DLL_PREFIX@hunspell@DLL_SUFFIX@
|
||||
#endif
|
||||
#ifndef MOZ_SYSTEM_NSPR
|
||||
#ifndef MOZ_FOLD_LIBS
|
||||
@BINPATH@/@DLL_PREFIX@nspr4@DLL_SUFFIX@
|
||||
|
|
|
|||
|
|
@ -306,8 +306,7 @@
|
|||
<menuitem id="appmenu_permissions"
|
||||
class="menuitem-iconic"
|
||||
label="&permissions.label;"
|
||||
command="Tools:Permissions"
|
||||
key="key_openPermissions"/>
|
||||
command="Tools:Permissions"/>
|
||||
#ifdef MOZ_SERVICES_SYNC
|
||||
<!-- only one of sync-setup or sync-syncnow will be showing at once -->
|
||||
<menuitem id="sync-setup-appmenu"
|
||||
|
|
|
|||
|
|
@ -428,7 +428,7 @@ var PlacesCommandHook = {
|
|||
*/
|
||||
updateBookmarkAllTabsCommand: function() {
|
||||
// There's nothing to do in non-browser windows.
|
||||
if (window.location.href != getBrowserURL()) {
|
||||
if (!window.location || window.location.href != getBrowserURL()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1978,7 +1978,9 @@
|
|||
setTimeout(function (tab, tabbrowser) {
|
||||
if (tab.parentNode &&
|
||||
window.getComputedStyle(tab).maxWidth == "0.1px") {
|
||||
NS_ASSERT(false, "Giving up waiting for the tab closing animation to finish (bug 608589)");
|
||||
if (this.visible) {
|
||||
NS_ASSERT(false, "Giving up waiting for the tab closing animation to finish (bug 608589)");
|
||||
}
|
||||
tabbrowser._endRemoveTab(tab);
|
||||
}
|
||||
}, 3000, aTab, this);
|
||||
|
|
|
|||
|
|
@ -66,8 +66,9 @@
|
|||
#ifdef GKMEDIAS_SHARED_LIBRARY
|
||||
@BINPATH@/@DLL_PREFIX@gkmedias@DLL_SUFFIX@
|
||||
#endif
|
||||
; Hunspell
|
||||
#ifndef MOZ_SYSTEM_HUNSPELL
|
||||
@BINPATH@/@DLL_PREFIX@hunspell@DLL_SUFFIX@
|
||||
#endif
|
||||
#ifndef MOZ_SYSTEM_NSPR
|
||||
#ifndef MOZ_FOLD_LIBS
|
||||
@BINPATH@/@DLL_PREFIX@nspr4@DLL_SUFFIX@
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue