diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2020-01-09 17:43:39 +0100 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2020-01-09 17:43:39 +0100 |
commit | 941b22b47f31f4125bc6fa5c28060cc193f79f87 (patch) | |
tree | 53e2160cb60345b84c762beabeebe047283e736a | |
parent | 240976e8056624ee93f858829b75e33993561c24 (diff) |
map: invert from/to colour2.5.10
-rw-r--r-- | lib/DBInfoscreen/Controller/Map.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/DBInfoscreen/Controller/Map.pm b/lib/DBInfoscreen/Controller/Map.pm index 6ab2c32..03f27ab 100644 --- a/lib/DBInfoscreen/Controller/Map.pm +++ b/lib/DBInfoscreen/Controller/Map.pm @@ -112,7 +112,7 @@ sub route { lon => $stop->{stop}{location}{longitude}, lat => $stop->{stop}{location}{latitude}, title => $stop->{stop}{name}, - icon => 'greenIcon', + icon => 'goldIcon', } ); } @@ -123,7 +123,7 @@ sub route { lon => $stop->{stop}{location}{longitude}, lat => $stop->{stop}{location}{latitude}, title => $stop->{stop}{name}, - icon => 'goldIcon', + icon => 'greenIcon', } ); } |