mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-17 19:38:36 +01:00
Fix broken relative width calculation after r48947.
This commit is contained in:
parent
e51f2bb249
commit
2623a9410b
@ -414,7 +414,7 @@ var et2_dataview = Class.extend({
|
|||||||
{
|
{
|
||||||
var col = self.columnMgr.columns[i];
|
var col = self.columnMgr.columns[i];
|
||||||
if(col == this || col.fixedWidth) continue;
|
if(col == this || col.fixedWidth) continue;
|
||||||
col.set_width(self.columns[i].width / relative);
|
col.set_width(self.columnMgr.columnWidths[i] / relative);
|
||||||
}
|
}
|
||||||
// Triggers column change callback, which saves
|
// Triggers column change callback, which saves
|
||||||
self.updateColumns();
|
self.updateColumns();
|
||||||
|
Loading…
Reference in New Issue
Block a user