Skip to content

Commit

Permalink
fix #131
Browse files Browse the repository at this point in the history
Signed-off-by: ふぁ <yuki@yuki0311.com>
  • Loading branch information
fa0311 committed Nov 26, 2024
1 parent 1f163e2 commit ed5015f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion DMMGamePlayerFastLauncher/tab/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,14 @@ def __init__(self, master: CTkBaseClass):
self.toast = ToastController(self)
self.values = [x.stem for x in DataPathConfig.ACCOUNT.iterdir() if x.suffix == ".bytes"]
self.filename = StringVar()
self.body = CTkFrame(self, fg_color="transparent", height=0)
self.body_var = {}
self.body_filename = StringVar()

def create(self):
CTkLabel(self, text=i18n.t("app.account.edit_detail"), justify=ctk.LEFT).pack(anchor=ctk.W)
OptionMenuComponent(self, text=i18n.t("app.account.file_select"), values=self.values, variable=self.filename, command=self.select_callback).create()
self._parent_canvas.yview_moveto(0)
self.body = CTkFrame(self, fg_color="transparent", height=0)
self.body.pack(expand=True, fill=ctk.BOTH)
return self

Expand Down

0 comments on commit ed5015f

Please sign in to comment.