Fix exiting from modes
This commit is contained in:
parent
5e3a87de0e
commit
2f8b0a4b4a
1 changed files with 3 additions and 3 deletions
|
@ -952,7 +952,7 @@ public class MeasurementToolFragment extends Fragment {
|
|||
}
|
||||
|
||||
private void switchMovePointMode(boolean enable) {
|
||||
if (editingCtx.isInMovePointMode()) {
|
||||
if (enable) {
|
||||
toolBarController.setBackBtnIconIds(R.drawable.ic_action_mode_back, R.drawable.ic_action_mode_back);
|
||||
} else {
|
||||
toolBarController.setBackBtnIconIds(R.drawable.ic_action_remove_dark, R.drawable.ic_action_remove_dark);
|
||||
|
@ -971,7 +971,7 @@ public class MeasurementToolFragment extends Fragment {
|
|||
}
|
||||
|
||||
private void switchAddPointAfterMode(boolean enable) {
|
||||
if (editingCtx.isInAddPointAfterMode()) {
|
||||
if (enable) {
|
||||
toolBarController.setBackBtnIconIds(R.drawable.ic_action_mode_back, R.drawable.ic_action_mode_back);
|
||||
} else {
|
||||
toolBarController.setBackBtnIconIds(R.drawable.ic_action_remove_dark, R.drawable.ic_action_remove_dark);
|
||||
|
@ -990,7 +990,7 @@ public class MeasurementToolFragment extends Fragment {
|
|||
}
|
||||
|
||||
private void switchAddPointBeforeMode(boolean enable) {
|
||||
if (editingCtx.isInAddPointBeforeMode()) {
|
||||
if (enable) {
|
||||
toolBarController.setBackBtnIconIds(R.drawable.ic_action_mode_back, R.drawable.ic_action_mode_back);
|
||||
} else {
|
||||
toolBarController.setBackBtnIconIds(R.drawable.ic_action_remove_dark, R.drawable.ic_action_remove_dark);
|
||||
|
|
Loading…
Reference in a new issue