From 6ec77f65427ae1b7dd506f33817c55ab8064f376 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Sun, 24 May 2026 01:53:16 +0900 Subject: [PATCH] fix: pass update args to manager --- dzgui/views/components/right_panel.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dzgui/views/components/right_panel.py b/dzgui/views/components/right_panel.py index 48b385b..24da0f4 100644 --- a/dzgui/views/components/right_panel.py +++ b/dzgui/views/components/right_panel.py @@ -95,8 +95,10 @@ class RightPanel(Gtk.Box): self.gutter_box.add(eb) self.pack_start(self.gutter_box, NO_EXPAND, FILL, NO_PADDING) - def _on_update_button_clicked(self, button: Gtk.Button, exe_path: str, url: str) -> None: - UpdateManager(self.controller).update_version() + def _on_update_button_clicked( + self, button: Gtk.Button, exe_path: str, url: str + ) -> None: + UpdateManager(self.controller).update_version(exe_path, url) def _on_server_page_changed( self, emitter: "Emitter", page: "ServerTreeView"