From ed5015f03d7ea472dd4e951b28513d378da61caa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=B5=E3=81=81?= Date: Tue, 26 Nov 2024 14:07:34 +0900 Subject: [PATCH] fix #131 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ふぁ --- DMMGamePlayerFastLauncher/tab/account.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DMMGamePlayerFastLauncher/tab/account.py b/DMMGamePlayerFastLauncher/tab/account.py index db943a8..3eec9ad 100644 --- a/DMMGamePlayerFastLauncher/tab/account.py +++ b/DMMGamePlayerFastLauncher/tab/account.py @@ -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