From 2acd0025e550a44cef57b1f4d1a053b8abbfc7e7 Mon Sep 17 00:00:00 2001 From: kramo <93832451+kra-mo@users.noreply.github.com> Date: Sun, 19 Mar 2023 17:09:08 +0100 Subject: [PATCH] Fix "removed" string --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 17c7a17..23a0393 100644 --- a/src/main.py +++ b/src/main.py @@ -191,7 +191,7 @@ class CartridgesApplication(Adw.Application): self.win.on_go_back_action(None, None) # The variable is the title of the game - title = {self.win.games[game_id].name} + title = self.win.games[game_id].name toast = Adw.Toast.new(_(f"{title} removed")) toast.set_button_label(_("Undo")) toast.connect("button-clicked", self.win.on_undo_remove_action, game_id)