extensionSystem: Fix deferred loading of extensions

We need to show the list of installed extensions on EGO, so we can't defer
loading by not creating the extension meta.

https://bugzilla.gnome.org/show_bug.cgi?id=662704
This commit is contained in:
Jasper St. Pierre
2011-10-25 14:38:25 -04:00
parent 8d137eae5b
commit cc94076ffb
2 changed files with 15 additions and 11 deletions

View File

@ -737,6 +737,7 @@ Extensions.prototype = {
case ExtensionSystem.ExtensionState.ENABLED:
return _("Enabled");
case ExtensionSystem.ExtensionState.DISABLED:
case ExtensionSystem.ExtensionState.INITIALIZED:
return _("Disabled");
case ExtensionSystem.ExtensionState.ERROR:
return _("Error");