Remove unnecessary selectable background

This commit is contained in:
Vitaliy 2020-08-04 00:27:38 +03:00
parent 9e5232fca8
commit 0011085fb5
2 changed files with 6 additions and 0 deletions

View file

@ -250,6 +250,9 @@ public class TrackColoringCard extends BaseCard implements ColorPickerListener {
private void updateHeader() {
AndroidUiHelper.updateVisibility(view.findViewById(R.id.icon), false);
View headerView = view.findViewById(R.id.header_view);
headerView.setBackgroundDrawable(null);
TextView titleView = view.findViewById(R.id.title);
titleView.setText(R.string.select_color);

View file

@ -99,6 +99,9 @@ public class TrackWidthCard extends BaseCard {
private void updateHeader() {
AndroidUiHelper.updateVisibility(view.findViewById(R.id.icon), false);
View headerView = view.findViewById(R.id.header_view);
headerView.setBackgroundDrawable(null);
TextView titleView = view.findViewById(R.id.title);
titleView.setText(R.string.select_track_width);