Fixed bug when selecting the same 90 deg rotation twice causes crosshair to move

This commit is contained in:
Omer
2019-12-07 01:53:42 +02:00
parent 617e9b4b34
commit b92a06895c
2 changed files with 26 additions and 20 deletions

View File

@@ -13,4 +13,6 @@ public enum ImageRotationMode {
ImageRotationMode(int value) {
this.value = value;
}
public boolean isRotated(){return this.value==DEG_90.value||this.value==DEG_270.value;}
}