fix: 移除无用的重新加载供应商按钮,调整列表高度参数

- 设置对话框移除「重新加载供应商配置」按钮(云端同步已自动处理)
- 清理 _PROCESSOR_SERVICE 全局变量
- 列表最小高度 300→240,动态比例保持 80%

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-04 20:32:00 +08:00
parent 5bf51c36a0
commit 11402c2196
2 changed files with 2 additions and 18 deletions
+1 -1
View File
@@ -145,7 +145,7 @@ def _create_recent_files_section(parent, theme, log_text):
def _resize_recent_top(e):
try:
h = max(int(e.height * 0.85), 300)
h = max(int(e.height * 0.85), 180)
recent_top.configure(height=h)
except Exception:
pass