From 1c4fc30f4b4e423f1f103820681d824bdbcf2731 Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Mon, 2 Mar 2026 13:18:20 -0800 Subject: [PATCH] avoid hourglass when performing the 15 minute refresh --- src/app.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index fd9c515..9b8e941 100644 --- a/src/app.rs +++ b/src/app.rs @@ -231,7 +231,6 @@ impl cosmic::Application for AppModel { Task::none() } Message::RefreshWeather => { - self.is_loading = true; Task::perform(fetch_weather(), |result| { cosmic::Action::App(Message::WeatherUpdate(result)) })