Skip to content

Commit

Permalink
fix anonymous groups only show one
Browse files Browse the repository at this point in the history
  • Loading branch information
char101 committed Sep 17, 2011
1 parent 48b9e89 commit e84589c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions bootstrap.js
Expand Up @@ -829,7 +829,7 @@ function processWindow(window) {
let groupTitles = [];
let addedTitles = [];
groupItems.forEach(function(group) {
let title = group.getTitle();
let title = GU.getTitle(group);
if (! prefix || title.indexOf(prefix + GROUP_SEPARATOR) === 0) {
hasGroups = true;

Expand All @@ -856,7 +856,6 @@ function processWindow(window) {
}
}
});
groupTitles.sort(function(a, b) a[0].localeCompare(b[0]));
groupTitles.forEach(function(arr) {
let group = GroupItems.groupItem(arr[1]);
let m = $E("menu", {
Expand Down
2 changes: 1 addition & 1 deletion install.rdf
Expand Up @@ -5,7 +5,7 @@
<creator>Charles G.</creator>
<id>tabgroupsmenu@char.cc</id>
<name>TabGroups Menu</name>
<version>0.8.2.4</version>
<version>0.8.2.5</version>
<bootstrap>true</bootstrap>
<type>2</type>
<homepageURL>https://github.com/char101/tabgroupsmenu</homepageURL>
Expand Down

0 comments on commit e84589c

Please sign in to comment.