hide unlock button if not needed

This commit is contained in:
Milos Kozak 2017-02-23 23:13:38 +01:00
parent 9b2d0c9961
commit ade45d5b4c

View file

@ -113,6 +113,8 @@ public class ConfigBuilderFragment extends Fragment implements FragmentBase {
}, null); }, null);
} }
}); });
} else {
unlock.setVisibility(View.GONE);
} }
return view; return view;
} }