From 00c72a7117b6d7190b0fc8bcf95b1f4ed2ba68de Mon Sep 17 00:00:00 2001 From: itdominator <1itdominator@gmail.com> Date: Mon, 12 Jan 2026 00:15:43 -0600 Subject: [PATCH] Fixed code view close_file command --- src/core/widgets/code/commands/close_file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/widgets/code/commands/close_file.py b/src/core/widgets/code/commands/close_file.py index 6ac8b35..3c2e31e 100644 --- a/src/core/widgets/code/commands/close_file.py +++ b/src/core/widgets/code/commands/close_file.py @@ -16,5 +16,5 @@ def execute( view: GtkSource.View = None ): logger.debug("Command: Close File") - view.command.remove_file() + view.command.remove_file(view) update_info_bar_if_focused(view.command, view)