mirror of
https://github.com/opentx/opentx.git
synced 2025-07-25 17:25:13 +03:00
Issue #871 fixed
This commit is contained in:
parent
0b881fea00
commit
82ea14e014
1 changed files with 7 additions and 3 deletions
|
@ -664,15 +664,19 @@ class ConversionField: public TransformedField {
|
|||
|
||||
virtual void afterImport()
|
||||
{
|
||||
field = _field;
|
||||
|
||||
if (table) {
|
||||
if (table->importValue(_field, field))
|
||||
if (table->importValue(field, field))
|
||||
return;
|
||||
}
|
||||
|
||||
field -= shift;
|
||||
if (shift) {
|
||||
field -= shift;
|
||||
}
|
||||
|
||||
if (importFunc) {
|
||||
field = importFunc(_field);
|
||||
field = importFunc(field);
|
||||
}
|
||||
|
||||
if (scale) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue