Fix changing roles order
This commit is contained in:
Ilya Kirillov
2025-03-17 18:32:49 +03:00
parent 439c9b3085
commit 7505fadefe
3 changed files with 3 additions and 3 deletions

View File

@ -568,7 +568,7 @@
this.OForm.onChangeRoles();
};
CDocument.prototype.onChangeFieldGroup = function(fieldGroup)
CDocument.prototype.onChangeFieldGroupFilled = function(fieldGroup)
{
if (!this.OForm)
return;

View File

@ -69,7 +69,7 @@
AscCommon.History.Add(new AscDFH.CChangesOFormFieldGroupFilled(this, this.Filled, isFilled));
this.Filled = isFilled;
this.onChange();
this.onChangeFilled();
};
CFieldGroup.prototype.setWeight = function(value)
{

View File

@ -137,7 +137,7 @@
function(value)
{
this.Class.Filled = value;
this.Class.onChange();
this.Class.onChangeFilled();
},
false
);