Corrected an error accidentally introduced a few commits ago in

(commit 4084a6a246) in which a
misplaced close-brace altered the way that "getcell" handles
some orientation cases.  Thanks to Sylvain Munaut for discovering
the error.
This commit is contained in:
R. Timothy Edwards 2025-08-21 10:44:24 -04:00
parent 8d762b4f59
commit d2acdac901
2 changed files with 5 additions and 4 deletions

View File

@ -1 +1 @@
8.3.544
8.3.545

View File

@ -5239,11 +5239,12 @@ default_action:
}
av += 2;
ac -= 2;
}
GeoTransPoint(tx_cell, &editPoint, &locp);
GeoTranslateTrans(tx_cell, editPoint.p_x - locp.p_x,
GeoTransPoint(tx_cell, &editPoint, &locp);
GeoTranslateTrans(tx_cell, editPoint.p_x - locp.p_x,
editPoint.p_y - locp.p_y,
&trans_cell);
}
hasTrans = TRUE;
break;
case IDX_90: /* "90" */