From e89f0dc0486247883da9bf06550c20ef24b47932 Mon Sep 17 00:00:00 2001 From: Hermes Date: Sun, 12 Jul 2026 13:21:11 +0000 Subject: [PATCH] fix: PySide6 first (Houdini 21 uses Qt6, PySide2 fallback caused silent panel load failure) --- scripts/python/hermes_bridge_panel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/python/hermes_bridge_panel.py b/scripts/python/hermes_bridge_panel.py index 984239b..de26425 100644 --- a/scripts/python/hermes_bridge_panel.py +++ b/scripts/python/hermes_bridge_panel.py @@ -9,9 +9,9 @@ import os import json try: - from PySide2 import QtWidgets, QtCore, QtGui -except ImportError: from PySide6 import QtWidgets, QtCore, QtGui +except ImportError: + from PySide2 import QtWidgets, QtCore, QtGui # ── Config persistence ──────────────────────────────────