library id also changes if user is renamed

This commit is contained in:
j 2016-01-08 11:01:48 +05:30
parent 664fc702c2
commit f979cd4890
3 changed files with 9 additions and 3 deletions

View File

@ -310,7 +310,13 @@ oml.ui.folders = function() {
oml.$ui.folder[index].options({title: Ox.encodeHTMLEntities(name)});
oml.getLists(function(lists) {
var items = lists.filter(function(list) {
return list.user == name && list.type != 'library';
return list.user == name && list.type != 'library';
}),
library = lists.filter(function(list) {
return list.user == name && list.type == 'library';
});
oml.$ui.libraryList[index].options({
items: library
});
oml.$ui.folder[index].$content
.css({height: 16 + items.length * 16 + 'px'});

View File

@ -478,7 +478,7 @@ oml.ui.mainMenu = function() {
}
} else if (id == 'quit') {
oml.api.quit(function() {
//
// ...
});
} else {
Ox.print('MAIN MENU DOES NOT YET HANDLE', id);

View File

@ -947,7 +947,7 @@ oml.renameUser = function(data) {
}
});
}
};
oml.resizeFilters = function() {