From cf3d8834a50b18dcd79d835b475aac193d1c1ccd Mon Sep 17 00:00:00 2001 From: NFL_jiancx <1678594309@qq.com> Date: Sun, 30 Mar 2025 18:41:33 +0800 Subject: [PATCH] =?UTF-8?q?fix(NFLmusic):=20=E4=BF=AE=E5=A4=8D=E6=97=A0?= =?UTF-8?q?=E6=B3=95=E6=90=9C=E7=B4=A2=E5=88=B0=E6=AD=8C=E6=9B=B2=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将搜索关键词从全局变量改为使用 var7.get() 获取 - 更新软件版本号至 4.1.8 --- NFLmusic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NFLmusic.py b/NFLmusic.py index 29eca46..eed4a76 100644 --- a/NFLmusic.py +++ b/NFLmusic.py @@ -329,7 +329,7 @@ def refresh(): listbox1.insert(END, musics) else: for musics in music_dir_without_endswith: - if search_words in musics: + if var7.get() in musics: listbox1.insert(END, musics) except: pass @@ -1238,7 +1238,7 @@ def search_local_song(): time.sleep(1) -version = "4.1.7" +version = "4.1.8" poem = "" appdata = os.getenv("APPDATA") make_resource()