fix folder height

This commit is contained in:
j 2019-01-28 15:01:47 +05:30
parent 269c6e511f
commit a691dc2dc8
1 changed files with 2 additions and 1 deletions

View File

@ -362,8 +362,9 @@ oml.ui.folders = function() {
oml.$ui.libraryList[index].options({
items: library
});
// library + public + lists
oml.$ui.folder[index].$content
.css({height: 16 + items.length * 16 + 'px'});
.css({height: 16 + 16 + items.length * 16 + 'px'});
oml.$ui.folderList[index].options({
items: items
})