From b660978b0e819868091cb5c3d374fa6ba2d066de Mon Sep 17 00:00:00 2001 From: Christian Rowlands Date: Thu, 9 May 2024 10:11:23 -0400 Subject: [PATCH] Sets the correct color for the SouthPAN Legend diamond and dashes Adds the diamond and dashes to the list of shapes and lines so that the colors get updated appropriately when dark mode is turned on --- .../main/java/com/android/gpstest/ui/sky/SkyFragment.kt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/GPSTest/src/main/java/com/android/gpstest/ui/sky/SkyFragment.kt b/GPSTest/src/main/java/com/android/gpstest/ui/sky/SkyFragment.kt index 5b1bf975..dfeff552 100644 --- a/GPSTest/src/main/java/com/android/gpstest/ui/sky/SkyFragment.kt +++ b/GPSTest/src/main/java/com/android/gpstest/ui/sky/SkyFragment.kt @@ -314,7 +314,9 @@ class SkyFragment : Fragment() { legend.skyLegendShapeLine15a, legend.skyLegendShapeLine15b, legend.skyLegendShapeLine16a, - legend.skyLegendShapeLine16b + legend.skyLegendShapeLine16b, + legend.skyLegendShapeLine17a, + legend.skyLegendShapeLine17b ) // Shape Legend shapes @@ -331,7 +333,8 @@ class SkyFragment : Fragment() { legend.skyLegendDiamond4, legend.skyLegendDiamond5, legend.skyLegendDiamond6, - legend.skyLegendDiamond7 + legend.skyLegendDiamond7, + legend.skyLegendDiamond8 ) } @@ -584,4 +587,4 @@ class SkyFragment : Fragment() { companion object { const val TAG = "GpsSkyFragment" } -} \ No newline at end of file +}