From 7f7f12a4414e0ebef5da6cd26a81377b3a9764f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20T=C3=A1mara?= Date: Sat, 25 Oct 2025 08:32:41 -0500 Subject: [PATCH] feat: update vcs changed files info when click on branch status --- src/tui/status/branch.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tui/status/branch.zig b/src/tui/status/branch.zig index 140e090..ec8d7f6 100644 --- a/src/tui/status/branch.zig +++ b/src/tui/status/branch.zig @@ -56,6 +56,7 @@ pub fn ctx_deinit(self: *Self) void { fn on_click(self: *Self, _: *ButtonType, _: Widget.Pos) void { self.refresh_vcs_status(); + tui.sync_with_vcs() catch {}; command.executeName("show_vcs_status", .{}) catch {}; }