mirror of
https://github.com/283375/arcaea-offline-pyside-ui.git
synced 2025-04-21 18:20:18 +00:00
fix: avoid circular import
This commit is contained in:
parent
412116ecc8
commit
9eab7ffc63
@ -160,7 +160,7 @@
|
|||||||
<customwidget>
|
<customwidget>
|
||||||
<class>DevicesComboBox</class>
|
<class>DevicesComboBox</class>
|
||||||
<extends>QComboBox</extends>
|
<extends>QComboBox</extends>
|
||||||
<header>ui.implements.components</header>
|
<header>ui.implements.components.devicesComboBox</header>
|
||||||
</customwidget>
|
</customwidget>
|
||||||
</customwidgets>
|
</customwidgets>
|
||||||
<resources/>
|
<resources/>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
################################################################################
|
################################################################################
|
||||||
## Form generated from reading UI file 'settingsDefault.ui'
|
## Form generated from reading UI file 'settingsDefault.ui'
|
||||||
##
|
##
|
||||||
## Created by: Qt User Interface Compiler version 6.5.0
|
## Created by: Qt User Interface Compiler version 6.5.1
|
||||||
##
|
##
|
||||||
## WARNING! All changes made in this file will be lost when recompiling UI file!
|
## WARNING! All changes made in this file will be lost when recompiling UI file!
|
||||||
################################################################################
|
################################################################################
|
||||||
@ -18,7 +18,7 @@ from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
|
|||||||
from PySide6.QtWidgets import (QApplication, QFormLayout, QHBoxLayout, QLabel,
|
from PySide6.QtWidgets import (QApplication, QFormLayout, QHBoxLayout, QLabel,
|
||||||
QPushButton, QSizePolicy, QSpacerItem, QWidget)
|
QPushButton, QSizePolicy, QSpacerItem, QWidget)
|
||||||
|
|
||||||
from ui.implements.components import DevicesComboBox
|
from ui.implements.components.devicesComboBox import DevicesComboBox
|
||||||
from ui.implements.components.fileSelector import FileSelector
|
from ui.implements.components.fileSelector import FileSelector
|
||||||
|
|
||||||
class Ui_SettingsDefault(object):
|
class Ui_SettingsDefault(object):
|
||||||
|
@ -159,18 +159,18 @@
|
|||||||
<customwidget>
|
<customwidget>
|
||||||
<class>FileSelector</class>
|
<class>FileSelector</class>
|
||||||
<extends>QWidget</extends>
|
<extends>QWidget</extends>
|
||||||
<header>ui.implements.components</header>
|
<header>ui.implements.components.fileSelector</header>
|
||||||
<container>1</container>
|
<container>1</container>
|
||||||
</customwidget>
|
</customwidget>
|
||||||
<customwidget>
|
<customwidget>
|
||||||
<class>DevicesComboBox</class>
|
<class>DevicesComboBox</class>
|
||||||
<extends>QComboBox</extends>
|
<extends>QComboBox</extends>
|
||||||
<header>ui.implements.components</header>
|
<header>ui.implements.components.devicesComboBox</header>
|
||||||
</customwidget>
|
</customwidget>
|
||||||
<customwidget>
|
<customwidget>
|
||||||
<class>OcrQueue</class>
|
<class>OcrQueue</class>
|
||||||
<extends>QWidget</extends>
|
<extends>QWidget</extends>
|
||||||
<header>ui.implements.components</header>
|
<header>ui.implements.components.ocrQueue</header>
|
||||||
<container>1</container>
|
<container>1</container>
|
||||||
</customwidget>
|
</customwidget>
|
||||||
</customwidgets>
|
</customwidgets>
|
||||||
|
@ -18,7 +18,9 @@ from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
|
|||||||
from PySide6.QtWidgets import (QApplication, QGroupBox, QHBoxLayout, QPushButton,
|
from PySide6.QtWidgets import (QApplication, QGroupBox, QHBoxLayout, QPushButton,
|
||||||
QSizePolicy, QStackedWidget, QVBoxLayout, QWidget)
|
QSizePolicy, QStackedWidget, QVBoxLayout, QWidget)
|
||||||
|
|
||||||
from ui.implements.components import (DevicesComboBox, FileSelector, OcrQueue)
|
from ui.implements.components.devicesComboBox import DevicesComboBox
|
||||||
|
from ui.implements.components.fileSelector import FileSelector
|
||||||
|
from ui.implements.components.ocrQueue import OcrQueue
|
||||||
|
|
||||||
class Ui_TabOcr(object):
|
class Ui_TabOcr(object):
|
||||||
def setupUi(self, TabOcr):
|
def setupUi(self, TabOcr):
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
from .chartSelector import ChartSelector
|
|
||||||
from .devicesComboBox import DevicesComboBox
|
|
||||||
from .elidedLabel import ElidedLabel
|
|
||||||
from .fileSelector import FileSelector
|
|
||||||
from .ratingClassRadioButton import RatingClassRadioButton
|
|
||||||
from .scoreEditor import ScoreEditor
|
|
||||||
from .ocrQueue import OcrQueue
|
|
Loading…
x
Reference in New Issue
Block a user