[FIX] display problem in graph view in some cases

Recently, the graph view was changed to prevent changing groupbys
for active custom filters.  Unfortunately, I did not take into account
the fact that pivot table can be drawn in part when expanding rows.

The "frozen" parameter was then undefined and caused display problems,
this patch should fix the issue.
This commit is contained in:
Géry Debongnie 2014-09-16 10:11:47 +02:00
parent 8fc7cf74fc
commit 145690d81b
1 changed files with 1 additions and 1 deletions

View File

@ -389,7 +389,7 @@ openerp.web_graph.Graph = openerp.web.Widget.extend({
var rows = self.build_rows(header.children);
var doc_fragment = $(document.createDocumentFragment());
rows.map(function (row) {
doc_fragment.append(self.draw_row(row));
doc_fragment.append(self.draw_row(row, 0));
});
self.$row_clicked.after(doc_fragment);
} else {