Fix: can't save route line appearance after select "map style" color in editing
This commit is contained in:
parent
446650a80e
commit
1affe2f602
1 changed files with 2 additions and 2 deletions
|
@ -175,8 +175,8 @@ public class RouteLineDrawInfo {
|
||||||
|
|
||||||
RouteLineDrawInfo that = (RouteLineDrawInfo) o;
|
RouteLineDrawInfo that = (RouteLineDrawInfo) o;
|
||||||
|
|
||||||
if (!Algorithms.objectEquals(colorDay, that.colorDay)) return false;
|
if (!Algorithms.objectEquals(getColor(false), that.getColor(false))) return false;
|
||||||
if (!Algorithms.objectEquals(colorNight, that.colorNight)) return false;
|
if (!Algorithms.objectEquals(getColor(true), that.getColor(true))) return false;
|
||||||
return Algorithms.objectEquals(width, that.width);
|
return Algorithms.objectEquals(width, that.width);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue