Skip to content

Commit e5586ac

Browse files
committed
Ensure instructors' text color is black in list
Fixes #172
1 parent 131f198 commit e5586ac

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

PennMobile/src/main/java/com/pennapps/labs/pennmobile/adapters/RegistrarAdapter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ public View getView(int position, View view, ViewGroup parent) {
5757
holder.courseId.setText(courseCode);
5858
try {
5959
holder.courseInstr.setText(course.instructors.get(0).name);
60+
holder.courseInstr.setTextColor(Color.BLACK);
6061
} catch (IndexOutOfBoundsException e) {
6162
holder.courseInstr.setText(getContext().getString(R.string.professor_missing));
6263
holder.courseInstr.setTextColor(Color.parseColor("#4a000000"));

0 commit comments

Comments
 (0)