toggle cropper guidelines visibility depending on the primary action
This commit is contained in:
parent
e3c388ba30
commit
588754d999
1 changed files with 2 additions and 0 deletions
|
@ -165,9 +165,11 @@ class EditActivity : SimpleActivity(), CropImageView.OnCropImageCompleteListener
|
||||||
|
|
||||||
bottom_aspect_ratio.setOnClickListener {
|
bottom_aspect_ratio.setOnClickListener {
|
||||||
currPrimaryAction = if (currPrimaryAction == PRIMARY_ASPECT_RATIO) {
|
currPrimaryAction = if (currPrimaryAction == PRIMARY_ASPECT_RATIO) {
|
||||||
|
crop_image_view.guidelines = CropImageView.Guidelines.OFF
|
||||||
bottom_aspect_ratios.beGone()
|
bottom_aspect_ratios.beGone()
|
||||||
PRIMARY_NONE
|
PRIMARY_NONE
|
||||||
} else {
|
} else {
|
||||||
|
crop_image_view.guidelines = CropImageView.Guidelines.ON
|
||||||
bottom_aspect_ratios.beVisible()
|
bottom_aspect_ratios.beVisible()
|
||||||
PRIMARY_ASPECT_RATIO
|
PRIMARY_ASPECT_RATIO
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue