This commit is contained in:
27942
2026-01-26 23:58:47 +08:00
parent 91e4037f7c
commit 989d7b4607

View File

@@ -3151,9 +3151,9 @@ class MainWindow(QMainWindow):
self.table_sort_keys = []
self.config_table.horizontalHeader().setSortIndicator(-1, Qt.AscendingOrder)
# 更新表格显示
# 更新表格显示(跳过表格->configs同步避免旧数据回写
try:
self.update_table()
self.update_table(skip_sync=True)
except Exception as e:
self._show_infobar("error", "错误", f"更新表格失败: {str(e)}")
logger.error(f"更新表格失败: {e}")