Change dividers in destinations list
This commit is contained in:
parent
bf6461fd31
commit
2ab176cf77
1 changed files with 4 additions and 15 deletions
|
@ -270,24 +270,13 @@ public class WaypointDialogHelper {
|
|||
if (locationPointNext) {
|
||||
if (locationPoint) {
|
||||
LocationPointWrapper w = (LocationPointWrapper) obj;
|
||||
if (w.type == WaypointHelper.TARGETS && ((TargetPoint) w.point).start) {
|
||||
d = startingPointDivider; // starting point divider
|
||||
if (w.type == WaypointHelper.TARGETS) {
|
||||
d = halfPointDivider;
|
||||
} else {
|
||||
if (w.type == WaypointHelper.TARGETS) {
|
||||
d = halfPointDivider;
|
||||
} else {
|
||||
d = halfDivider;
|
||||
}
|
||||
d = halfDivider;
|
||||
}
|
||||
} else {
|
||||
LocationPointWrapper w = (LocationPointWrapper) objNext;
|
||||
if (w.type == WaypointHelper.TARGETS) {
|
||||
if (!((TargetPoint) w.point).start) {
|
||||
d = fullDivider;
|
||||
}
|
||||
} else {
|
||||
d = fullDivider;
|
||||
}
|
||||
d = fullDivider;
|
||||
}
|
||||
} else if (objNext instanceof RadiusItem && labelView) {
|
||||
d = headerDivider;
|
||||
|
|
Loading…
Reference in a new issue