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:
parent
8d762b4f59
commit
d2acdac901
|
|
@ -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" */
|
||||
|
|
|
|||
Loading…
Reference in New Issue