mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
move some widgets to tools/utils
This commit is contained in:
parent
d6d894fb8d
commit
4a51c7ca47
14 changed files with 10 additions and 4 deletions
|
|
@ -21,7 +21,7 @@ from ayon_core.tools.utils import (
|
|||
FocusDoubleSpinBox,
|
||||
MultiSelectionComboBox,
|
||||
)
|
||||
from ayon_core.widgets.nice_checkbox import NiceCheckbox
|
||||
from ayon_core.tools.utils import NiceCheckbox
|
||||
|
||||
from .files_widget import FilesWidget
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
from math import ceil
|
||||
from qtpy import QtWidgets, QtCore, QtGui
|
||||
|
||||
from ayon_core.widgets.nice_checkbox import NiceCheckbox
|
||||
from ayon_core.tools.utils import NiceCheckbox
|
||||
|
||||
# from ayon_core.tools.utils import DeselectableTreeView
|
||||
from .constants import (
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ import collections
|
|||
|
||||
from qtpy import QtWidgets, QtCore
|
||||
|
||||
from ayon_core.widgets.nice_checkbox import NiceCheckbox
|
||||
from ayon_core.tools.utils import NiceCheckbox
|
||||
|
||||
from ayon_core.tools.utils import BaseClickableFrame
|
||||
from ayon_core.tools.utils.lib import html_escape
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ import collections
|
|||
from qtpy import QtWidgets, QtCore, QtGui
|
||||
|
||||
from ayon_core.style import get_objected_colors
|
||||
from ayon_core.widgets.nice_checkbox import NiceCheckbox
|
||||
from ayon_core.tools.utils import NiceCheckbox
|
||||
from ayon_core.tools.utils.lib import html_escape, checkstate_int_to_enum
|
||||
from .widgets import AbstractInstanceView
|
||||
from ..constants import (
|
||||
|
|
|
|||
|
|
@ -49,6 +49,8 @@ from .overlay_messages import (
|
|||
)
|
||||
from .multiselection_combobox import MultiSelectionComboBox
|
||||
from .thumbnail_paint_widget import ThumbnailPainterWidget
|
||||
from .sliders import NiceSlider
|
||||
from .nice_checkbox import NiceCheckbox
|
||||
|
||||
|
||||
__all__ = (
|
||||
|
|
@ -101,4 +103,8 @@ __all__ = (
|
|||
"MultiSelectionComboBox",
|
||||
|
||||
"ThumbnailPainterWidget",
|
||||
|
||||
"NiceSlider",
|
||||
|
||||
"NiceCheckbox",
|
||||
)
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
Loading…
Add table
Add a link
Reference in a new issue