diff options
author | Christopher Baines <cbaines8@gmail.com> | 2012-03-04 20:17:38 +0000 |
---|---|---|
committer | Christopher Baines <cbaines8@gmail.com> | 2012-03-04 20:17:38 +0000 |
commit | 930f1771a4df314f3a727b035c1c5f1c1074aedb (patch) | |
tree | 11aa880d1c3ad3bec400d682380381cf35c9abfa | |
parent | c0eb171ea188d38a5425f0b2abe6c2f0936a311c (diff) | |
download | southamptonuniversitymap-930f1771a4df314f3a727b035c1c5f1c1074aedb.tar southamptonuniversitymap-930f1771a4df314f3a727b035c1c5f1c1074aedb.tar.gz |
Add back the building ID to the POI View.
-rw-r--r-- | src/net/cbaines/suma/POIView.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/net/cbaines/suma/POIView.java b/src/net/cbaines/suma/POIView.java index 95c571c..6324aeb 100644 --- a/src/net/cbaines/suma/POIView.java +++ b/src/net/cbaines/suma/POIView.java @@ -91,11 +91,7 @@ public class POIView extends LinearLayout implements Preferences { Building building = (Building) poi; // Log.i(TAG, "Its a building of name " + building.name); - if (identifiersEnabled) { - name.setText(building.name + " (" + building.id + ")"); - } else { - name.setText(building.name); - } + name.setText(building.name + " (" + building.id + ")"); } else if (poi.type == POI.BUS_STOP) { BusStop busStop = (BusStop) poi; |