mirror of
https://gitlab.com/oeffi/oeffi.git
synced 2025-07-07 20:28:49 +00:00
TripDetailsActivity: Use typeface constant rather than just '0'.
This commit is contained in:
parent
b028cbba38
commit
4239a8888c
1 changed files with 2 additions and 2 deletions
|
@ -766,10 +766,10 @@ public class TripDetailsActivity extends OeffiActivity implements LocationListen
|
|||
stopNameView.setTypeface(null, Typeface.BOLD);
|
||||
} else if (pearlType == PearlView.Type.PASSING) {
|
||||
stopNameView.setTextColor(colorTextGhosted);
|
||||
stopNameView.setTypeface(null, 0);
|
||||
stopNameView.setTypeface(null, Typeface.NORMAL);
|
||||
} else {
|
||||
stopNameView.setTextColor(colorText);
|
||||
stopNameView.setTypeface(null, 0);
|
||||
stopNameView.setTypeface(null, Typeface.NORMAL);
|
||||
}
|
||||
if (stop.location.hasId())
|
||||
stopNameView.setOnClickListener(new StopClickListener(stop));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue