♻️ refactor support check function name

This commit is contained in:
Ondřej Samohel 2025-06-09 13:52:13 +02:00
parent 04fffd0b9f
commit 74ed8bf2bb
No known key found for this signature in database
GPG key ID: 02376E18990A97C6

View file

@ -4,7 +4,7 @@ from typing import Optional
from qtpy import QtWidgets, QtCore
from ayon_core.pipeline.compatibility import is_supporting_product_base_type
from ayon_core.pipeline.compatibility import is_product_base_type_supported
from ayon_core.tools.utils import (
RecursiveSortFilterProxyModel,
DeselectableTreeView,
@ -263,7 +263,7 @@ class ProductsWidget(QtWidgets.QWidget):
self._controller.is_sitesync_enabled()
)
if not is_supporting_product_base_type():
if not is_product_base_type_supported():
# Hide product base type column
products_view.setColumnHidden(
products_model.product_base_type_col, True