avoid hourglass when performing the 15 minute refresh

This commit is contained in:
Emil Lerch 2026-03-02 13:18:20 -08:00
parent 0e2a34c520
commit 1c4fc30f4b
Signed by: lobo
GPG key ID: A7B62D657EF764F8

View file

@ -231,7 +231,6 @@ impl cosmic::Application for AppModel {
Task::none() Task::none()
} }
Message::RefreshWeather => { Message::RefreshWeather => {
self.is_loading = true;
Task::perform(fetch_weather(), |result| { Task::perform(fetch_weather(), |result| {
cosmic::Action::App(Message::WeatherUpdate(result)) cosmic::Action::App(Message::WeatherUpdate(result))
}) })