修复已知问题

This commit is contained in:
2025-02-06 19:53:08 +08:00
parent eca947608c
commit f0bf05c521

View File

@ -1369,7 +1369,7 @@ announcement.place(x=300, y=10)
run(display_sentences) run(display_sentences)
labelframe_thanks = LabelFrame(about_frame, text=lang.get(la, "frame.thanks"), height=480, width=250) labelframe_thanks = LabelFrame(about_frame, text=lang.get(la, "frame.thanks"), height=480, width=250, )
labelframe_thanks.place(x=540, y=20) labelframe_thanks.place(x=540, y=20)
# 鸣谢 # 鸣谢
@ -1377,7 +1377,7 @@ oiapi = "https://oiapi.net/"
gitee = "https://gitee.com/" gitee = "https://gitee.com/"
nanfect = "http://pan.nanfengling.cn/" nanfect = "http://pan.nanfengling.cn/"
skylark = "https://space.bilibili.com/1868716664" skylark = "https://space.bilibili.com/1868716664"
sponsorship = "https://afdian.net/a/NFLstudio" sponsorship = "https://afdian.com/a/NFLstudio"
lb0 = lb(pack_box=labelframe_thanks, label=lang.get(la, 'ui.thanks.text.music_url'), lb0 = lb(pack_box=labelframe_thanks, label=lang.get(la, 'ui.thanks.text.music_url'),
button=lang.get(la, 'ui.thanks.button.music_url'), command=lambda: webbrowser.open(oiapi)) button=lang.get(la, 'ui.thanks.button.music_url'), command=lambda: webbrowser.open(oiapi))
@ -1396,7 +1396,7 @@ lb4 = lb(pack_box=labelframe_thanks, label=lang.get(la, 'ui.thanks.text.sponsors
lb4.place(button=(80, 175), label=(10, 180)) lb4.place(button=(80, 175), label=(10, 180))
scrollbar3 = Scrollbar(labelframe_thanks, orient=VERTICAL) scrollbar3 = Scrollbar(labelframe_thanks, orient=VERTICAL)
sponsors_list = Listbox(labelframe_thanks, height=13, width=30, yscrollcommand=scrollbar3) sponsors_list = Listbox(labelframe_thanks, height=13, width=30, yscrollcommand=scrollbar3.set)
sponsors_list.place(x=10, y=210) sponsors_list.place(x=10, y=210)
scrollbar3.config(command=sponsors_list.yview) scrollbar3.config(command=sponsors_list.yview)
scrollbar3.place(x=227, y=210, height=240) scrollbar3.place(x=227, y=210, height=240)