Fix index handling in change manager
All checks were successful
zdm/undo-redo/pipeline/head This commit looks good
All checks were successful
zdm/undo-redo/pipeline/head This commit looks good
This commit is contained in:
parent
2773d360fb
commit
ee6015b353
@ -15,8 +15,8 @@ public final class ChangeManager<C extends Change> {
|
||||
|
||||
private final List<C> changes = new LinkedList<>();
|
||||
|
||||
private int index;
|
||||
private int markedIndex;
|
||||
private int index = -1;
|
||||
private int markedIndex = -1;
|
||||
|
||||
/**
|
||||
* Applies the given change and appends it to the change list.
|
||||
@ -27,6 +27,7 @@ public final class ChangeManager<C extends Change> {
|
||||
public void addChange(C change) {
|
||||
change.apply();
|
||||
changes.add(change);
|
||||
++index;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -81,7 +82,7 @@ public final class ChangeManager<C extends Change> {
|
||||
* @since 0.0.1
|
||||
*/
|
||||
public boolean isUndoAvailable() {
|
||||
return index > 0;
|
||||
return index > -1;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user