diff --git a/weather-widget/weather.lua b/weather-widget/weather.lua
index 463c785..854ff49 100644
--- a/weather-widget/weather.lua
+++ b/weather-widget/weather.lua
@@ -114,12 +114,12 @@ weather_widget:connect_signal("mouse::enter", function()
icon = path_to_icons .. icon_map[resp.weather[1].icon],
icon_size=20,
text =
- '' .. resp.weather[1].main .. ' (' .. resp.weather[1].description .. ')
' ..
- 'Humidity: ' .. resp.main.humidity .. '%
' ..
- 'Temperature: ' .. to_celcius(resp.main.temp) .. '
' ..
- 'Pressure: ' .. resp.main.pressure .. 'hPa
' ..
- 'Clouds: ' .. resp.clouds.all .. '%
' ..
- 'Wind: ' .. resp.wind.speed .. 'm/s (' .. to_direction(resp.wind.deg) .. ')',
+ '' .. resp.weather[1].main .. ' (' .. resp.weather[1].description .. ')
' ..
+ 'Humidity: ' .. resp.main.humidity .. '%
' ..
+ 'Temperature: ' .. to_celcius(resp.main.temp) .. '
' ..
+ 'Pressure: ' .. resp.main.pressure .. 'hPa
' ..
+ 'Clouds: ' .. resp.clouds.all .. '%
' ..
+ 'Wind: ' .. resp.wind.speed .. 'm/s (' .. to_direction(resp.wind.deg) .. ')',
timeout = 5, hover_timeout = 10,
width = 200
}