From 00e5c15b95bc75be7a164974af152bcfca8e8562 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 20 Sep 2024 08:50:41 -0600 Subject: [PATCH] Fix operations not showing up in history --- src/app.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app.rs b/src/app.rs index d5541f8..34c6a0a 100644 --- a/src/app.rs +++ b/src/app.rs @@ -2002,9 +2002,8 @@ impl Application for App { .map(cosmic::app::Message::App), ); } - - self.complete_operations.insert(id, op); } + self.complete_operations.insert(id, op); } // Potentially show a notification commands.push(self.update_notification());