Files
Starlight_Lancher/tools/icon_work/chk_fv.py
Ap_Tx e53c0bf1fd
Some checks failed
Axolotl desktop CI / guardrails (push) Has been cancelled
Axolotl desktop CI / desktop (macos-latest) (push) Has been cancelled
Axolotl desktop CI / desktop (ubuntu-latest) (push) Has been cancelled
Axolotl desktop CI / desktop (windows-latest) (push) Has been cancelled
Axolotl desktop CI / website (push) Has been cancelled
Repository checks / typos (push) Has been cancelled
Repository checks / tombi (push) Has been cancelled
Rust checks / shear (push) Has been cancelled
Sync source to CNB / Sync Git ref (push) Has been cancelled
fix:关于页 tooltip 残留
2026-09-13 18:40:47 +08:00

20 lines
753 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import glob, os
cands = glob.glob(r"D:\Project\Starlight_Lancher\node_modules\.pnpm\floating-vue*\node_modules\floating-vue\dist\*.mjs")
cands += glob.glob(r"D:\Project\Starlight_Lancher\node_modules\floating-vue\dist\*")
print("候选:", cands[:5])
found = False
for c in cands:
if not os.path.isfile(c):
continue
try:
t = open(c, encoding="utf-8", errors="replace").read()
except Exception:
continue
if "hideAllTooltips" in t or "disposeTooltips" in t:
print("文件:", c)
print(" 含 hideAllTooltips:", "hideAllTooltips" in t)
print(" 含 disposeTooltips:", "disposeTooltips" in t)
found = True
break
if not found:
print("没找到(可能打包成 cjs/index")