panel-plugin/weather.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panel-plugin/weather.c b/panel-plugin/weather.c index 919064e..b47d374 100644 --- a/panel-plugin/weather.c +++ b/panel-plugin/weather.c @@ -1746,14 +1746,14 @@ weather_get_tooltip_text(const plugin_data *data) } else if (data->current_astro->sun_never_rises){ sunset = format_date(data->current_astro->sunset, - "%H:%M:%S", FALSE); + "%H:%M:%S", TRUE); sunval = g_strdup_printf(_("The sun never rises and sets at %s."), sunset); } else if (data->current_astro->sun_never_sets){ sunrise = format_date(data->current_astro->sunrise, - "%H:%M:%S", FALSE); + "%H:%M:%S", TRUE); sunval = g_strdup_printf(_("The sun rises at %s and never sets."), sunrise);