テスト用設定の追加

This commit is contained in:
suti7yk5032 2024-06-10 13:46:42 +09:00
parent f6c7342002
commit 3e4798e8d5

View file

@ -15,6 +15,9 @@ class App(customtkinter.CTk):
def __init__(self):
super().__init__()
self.title(f"{app_name} | ロック中")
if client_config["testing"] == 1:
pass
else:
self.attributes('-fullscreen', True)
self.attributes('-topmost', True)
@ -150,6 +153,7 @@ if not os.path.isfile(client_config_path):
"auth_host_url": "http://localhost",
"pc_number": 1,
"master_password_hash": "",
"testing": 0
}
with open(client_config_path, "w") as w: