Skip to content

Commit a1d851e

Browse files
Release: Re-enable spline for the release
1 parent d49a5c0 commit a1d851e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Android/src/org/droidplanner/android/activities/EditorActivity.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public void onCreate(Bundle savedInstanceState) {
102102
.findFragmentById(R.id.missionFragment1);
103103

104104
mSplineToggleContainer = findViewById(R.id.editorSplineToggleContainer);
105-
mSplineToggleContainer.setVisibility(View.GONE);
105+
mSplineToggleContainer.setVisibility(View.VISIBLE);
106106

107107
mLocationButtonsContainer = findViewById(R.id.location_button_container);
108108
ImageButton mGoToMyLocation = (ImageButton) findViewById(R.id.my_location_button);
@@ -363,7 +363,6 @@ public void editorToolLongClicked(EditorTools tools) {
363363

364364
private void enableSplineToggle(boolean isEnabled) {
365365
if (mSplineToggleContainer != null) {
366-
isEnabled=false;
367366
mSplineToggleContainer.setVisibility(isEnabled ? View.VISIBLE : View.INVISIBLE);
368367
}
369368
}

0 commit comments

Comments
 (0)