Removed extra "show advanced" box
All checks were successful
Check / mypy (push) Successful in 55s
Check / ruff (push) Successful in 5s

This commit is contained in:
Christoph Stahl 2025-05-19 22:53:14 +02:00
parent 806d26767b
commit 45b6880c9e

View file

@ -504,9 +504,9 @@ class GeneralConfig(OptionFrame):
["debug", "info", "warning", "error", "critical"], ["debug", "info", "warning", "error", "critical"],
config["log_level"], config["log_level"],
) )
self.add_bool_option("show_advanced", "Show Advanced Options", config["show_advanced"]) # self.add_bool_option("show_advanced", "Show Advanced Options", config["show_advanced"])
self.simple_options = ["server", "room", "secret", "show_advanced"] self.simple_options = ["server", "room", "secret"]
if not config["show_advanced"]: if not config["show_advanced"]:
for option in self.option_names.difference(self.simple_options): for option in self.option_names.difference(self.simple_options):