prepare to fix paate overflow undo corruption
This commit is contained in:
parent
ed37b5123f
commit
242a9e5729
|
@ -885,6 +885,14 @@ struct SelectionPoint {
|
||||||
xCoarse(0), xFine(0), y(0) {}
|
xCoarse(0), xFine(0), y(0) {}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct UndoRegion {
|
||||||
|
struct UndoRegionPoint {
|
||||||
|
int ord, x, y;
|
||||||
|
UndoRegionPoint():
|
||||||
|
ord(0), x(0), y(0) {}
|
||||||
|
} begin, end;
|
||||||
|
};
|
||||||
|
|
||||||
enum ActionType {
|
enum ActionType {
|
||||||
GUI_UNDO_CHANGE_ORDER,
|
GUI_UNDO_CHANGE_ORDER,
|
||||||
GUI_UNDO_PATTERN_EDIT,
|
GUI_UNDO_PATTERN_EDIT,
|
||||||
|
|
Loading…
Reference in a new issue