Skip to content

Commit

Permalink
Fix CaseRelationshipActivity button text
Browse files Browse the repository at this point in the history
  • Loading branch information
ekigamba committed Feb 20, 2019
1 parent d905551 commit b867e77
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@ private void toggleDrawingArrowsShowingRelationship() {

if (arrowLineLayer.isVisible()) {
kujakuMapView.disableLayer(arrowLineLayer);
drawArrowsBtn.setText(R.string.disable_arrows_showing_relationship);
drawArrowsBtn.setText(R.string.draw_arrows_showing_relationship);
} else {
kujakuMapView.addLayer(arrowLineLayer);
drawArrowsBtn.setText(R.string.draw_arrows_showing_relationship);
drawArrowsBtn.setText(R.string.disable_arrows_showing_relationship);
}
}

Expand Down

0 comments on commit b867e77

Please sign in to comment.