Skip to content

Commit

Permalink
Release: Remove the Spline editor option for the release
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurbenemann committed Jun 16, 2014
1 parent 8a025d3 commit 1c879b6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void onCreate(Bundle savedInstanceState) {
infoView.setVisibility(View.GONE); //TODO Remove after fixing #676

mSplineToggleContainer = findViewById(R.id.editorSplineToggleContainer);
mSplineToggleContainer.setVisibility(View.VISIBLE);
mSplineToggleContainer.setVisibility(View.GONE);

final RadioButton normalToggle = (RadioButton) findViewById(R.id.normalWpToggle);
normalToggle.setOnClickListener(new View.OnClickListener() {
Expand Down Expand Up @@ -279,7 +279,7 @@ public void editorToolLongClicked(EditorTools tools) {

private void enableSplineToggle(boolean isEnabled){
if(mSplineToggleContainer != null){
mSplineToggleContainer.setVisibility(isEnabled ? View.VISIBLE : View.INVISIBLE);
//mSplineToggleContainer.setVisibility(isEnabled ? View.VISIBLE : View.INVISIBLE);
}
}

Expand Down

0 comments on commit 1c879b6

Please sign in to comment.