Skip to content

Commit

Permalink
fix: remove cancel button for final frame
Browse files Browse the repository at this point in the history
Signed-off-by: Sylvain Leclerc <[email protected]>
  • Loading branch information
sylvlecl committed Oct 1, 2024
1 parent 87d995c commit ce1b009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/antares_web_installer/gui/widgets/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,5 +280,5 @@ def __init__(self, master: tk.Misc, window: "WizardView", *args, **kwargs):
style="Description.TLabel",
).pack(side="top", fill="x")

self.control_btn = ControlFrame(parent=self, window=window, finish_btn=True)
self.control_btn = ControlFrame(parent=self, window=window, cancel_btn=False, finish_btn=True)
self.control_btn.pack(side="bottom", fill="x")

0 comments on commit ce1b009

Please sign in to comment.