Commit 27b22cd9 authored by 邱阿朋's avatar 邱阿朋

feat(gui): 重新启用部分国家的无线电按钮

- 取消注释英国、法国、德国和加拿大的无线电按钮
- 这些国家的选项现在可以在界面上选择
parent 96102c18
......@@ -82,11 +82,11 @@ class VCManagerGUI(ttk.Window):
self.country_var = ttk.StringVar(value="US")
countries = [
("美国", "US"),
# ("英国", "UK"),
("英国", "UK"),
("日本", "JP"),
# ("法国", "FR"),
# ("德国", "DE"),
# ("加拿大", "CA"),
("法国", "FR"),
("德国", "DE"),
("加拿大", "CA"),
]
for i, (text, value) in enumerate(countries):
rb = ttk.Radiobutton(country_frame,text=text,variable=self.country_var,value=value)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment