From b793a3110801484a586d74b242fe23caad2bd061 Mon Sep 17 00:00:00 2001 From: Isaiah Odhner Date: Tue, 25 Apr 2023 15:43:43 -0400 Subject: [PATCH] Stop active tool when hitting Ctrl+A --- paint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paint.py b/paint.py index d90c392..317e756 100755 --- a/paint.py +++ b/paint.py @@ -1783,7 +1783,7 @@ class PaintApp(App[None]): def action_paste(self) -> None: self.warning_message_box(_("Paint"), "Not implemented.", "ok") def action_select_all(self) -> None: - self.meld_selection() + self.stop_action_in_progress() self.image.selection = Selection(Region(0, 0, self.image.width, self.image.height)) self.canvas.refresh() self.selected_tool = Tool.select