From bafad75ceab26622a01ca2727131bc7afe7d934e Mon Sep 17 00:00:00 2001 From: Nebojsa Vuksic Date: Tue, 29 Jul 2025 15:43:30 +0200 Subject: [PATCH] Use the arrow symbol for a wind direction --- .../weatherApp/model/WeatherForecastData.kt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/kotlin/org/jetbrains/plugins/template/weatherApp/model/WeatherForecastData.kt b/src/main/kotlin/org/jetbrains/plugins/template/weatherApp/model/WeatherForecastData.kt index 657d657..980a8b7 100644 --- a/src/main/kotlin/org/jetbrains/plugins/template/weatherApp/model/WeatherForecastData.kt +++ b/src/main/kotlin/org/jetbrains/plugins/template/weatherApp/model/WeatherForecastData.kt @@ -73,14 +73,14 @@ enum class WeatherType(val label: String, val dayIconKey: IconKey, val nightIcon * Enum representing wind directions. */ enum class WindDirection(val label: String) { - NORTH("N"), - NORTH_EAST("NE"), - EAST("E"), - SOUTH_EAST("SE"), - SOUTH("S"), - SOUTH_WEST("SW"), - WEST("W"), - NORTH_WEST("NW"); + NORTH("↑"), + NORTH_EAST("↗"), + EAST("→"), + SOUTH_EAST("↘"), + SOUTH("↓"), + SOUTH_WEST("↙"), + WEST("←"), + NORTH_WEST("↖"); companion object { fun random(): WindDirection = entries.toTypedArray().random()