new cursor override: use next object's colors (close #43)

This commit is contained in:
yugecin
2016-11-20 22:10:17 +01:00
parent 3cbc02c253
commit 63144426d1
3 changed files with 16 additions and 0 deletions

View File

@@ -62,6 +62,15 @@ public enum CursorColorOverrides {
}
return Cursor.lastObjColor;
}
},
NEXTOBJ ("Use next object's colors", 13) {
@Override
public Color getColor(boolean mirrored) {
if (mirrored) {
return Cursor.nextMirroredObjColor;
}
return Cursor.nextObjColor;
}
};
public int nr;