Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
Update PySide2 UI for Qt5.15
Browse files Browse the repository at this point in the history
  • Loading branch information
srevinsaju committed Jun 3, 2020
1 parent 595fb64 commit e189a39
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion guiscrcpy/ui/pyside2/downloader.py
Expand Up @@ -3,7 +3,7 @@
################################################################################
## Form generated from reading UI file 'downloader.ui'
##
## Created by: Qt User Interface Compiler version 5.14.2
## Created by: Qt User Interface Compiler version 5.15.0
##
## WARNING! All changes made in this file will be lost when recompiling UI file!
################################################################################
Expand Down
2 changes: 1 addition & 1 deletion guiscrcpy/ui/pyside2/main.py
Expand Up @@ -3,7 +3,7 @@
################################################################################
## Form generated from reading UI file 'mainwindow.ui'
##
## Created by: Qt User Interface Compiler version 5.14.2
## Created by: Qt User Interface Compiler version 5.15.0
##
## WARNING! All changes made in this file will be lost when recompiling UI file!
################################################################################
Expand Down
2 changes: 1 addition & 1 deletion guiscrcpy/ui/pyside2/network.py
Expand Up @@ -3,7 +3,7 @@
################################################################################
## Form generated from reading UI file 'network.ui'
##
## Created by: Qt User Interface Compiler version 5.14.2
## Created by: Qt User Interface Compiler version 5.15.0
##
## WARNING! All changes made in this file will be lost when recompiling UI file!
################################################################################
Expand Down
2 changes: 1 addition & 1 deletion guiscrcpy/ui/pyside2/panel.py
Expand Up @@ -3,7 +3,7 @@
################################################################################
## Form generated from reading UI file 'bottompanelui.ui'
##
## Created by: Qt User Interface Compiler version 5.14.2
## Created by: Qt User Interface Compiler version 5.15.0
##
## WARNING! All changes made in this file will be lost when recompiling UI file!
################################################################################
Expand Down
2 changes: 1 addition & 1 deletion guiscrcpy/ui/pyside2/rsrc_rc.py
@@ -1,6 +1,6 @@
# Resource object code (Python 3)
# Created by: object code
# Created by: The Resource Compiler for Qt version 5.14.2
# Created by: The Resource Compiler for Qt version 5.15.0
# WARNING! All changes made in this file will be lost!

from PySide2 import QtCore
Expand Down
2 changes: 1 addition & 1 deletion guiscrcpy/ui/pyside2/settings.py
Expand Up @@ -3,7 +3,7 @@
################################################################################
## Form generated from reading UI file 'settings.ui'
##
## Created by: Qt User Interface Compiler version 5.14.2
## Created by: Qt User Interface Compiler version 5.15.0
##
## WARNING! All changes made in this file will be lost when recompiling UI file!
################################################################################
Expand Down
2 changes: 1 addition & 1 deletion guiscrcpy/ui/pyside2/toolkit.py
Expand Up @@ -3,7 +3,7 @@
################################################################################
## Form generated from reading UI file 'toolkit_ui.ui'
##
## Created by: Qt User Interface Compiler version 5.14.2
## Created by: Qt User Interface Compiler version 5.15.0
##
## WARNING! All changes made in this file will be lost when recompiling UI file!
################################################################################
Expand Down
24 changes: 12 additions & 12 deletions guiscrcpy/ux/__init__.py
Expand Up @@ -33,16 +33,16 @@
use_pyqt5 = True

if use_pyqt5:
from ..ui.pyqt5.main import Ui_MainWindow # noqa: F401
from ..ui.pyqt5.network import Ui_NetworkUI # noqa: F401
from ..ui.pyqt5.panel import Ui_HorizontalPanel # noqa: F401
from ..ui.pyqt5.settings import Ui_MainWindow as Ui_SettingsWindow
from ..ui.pyqt5.downloader import Ui_Initializer # noqa: F401
from ..ui.pyqt5.toolkit import Ui_ToolbarPanel # noqa: F401
from guiscrcpy.ui.pyqt5.main import Ui_MainWindow # noqa: F401
from guiscrcpy.ui.pyqt5.network import Ui_NetworkUI # noqa: F401
from guiscrcpy.ui.pyqt5.panel import Ui_HorizontalPanel # noqa: F401
from guiscrcpy.ui.pyqt5.settings import Ui_MainWindow as Ui_SettingsWindow
from guiscrcpy.ui.pyqt5.downloader import Ui_Initializer # noqa: F401
from guiscrcpy.ui.pyqt5.toolkit import Ui_ToolbarPanel # noqa: F401
else:
from ..ui.pyside2.main import Ui_MainWindow # noqa: F401
from ..ui.pyside2.network import Ui_NetworkUI # noqa: F401
from ..ui.pyside2.panel import Ui_HorizontalPanel # noqa: F401
from ..ui.pyside2.settings import Ui_MainWindow as Ui_SettingsWindow
from ..ui.pyside2.downloader import Ui_Initializer # noqa: F401
from ..ui.pyside2.toolkit import Ui_ToolbarPanel # noqa: F401
from guiscrcpy.ui.pyside2.main import Ui_MainWindow # noqa: F401
from guiscrcpy.ui.pyside2.network import Ui_NetworkUI # noqa: F401
from guiscrcpy.ui.pyside2.panel import Ui_HorizontalPanel # noqa: F401
from guiscrcpy.ui.pyside2.settings import Ui_MainWindow as Ui_SettingsWindow
from guiscrcpy.ui.pyside2.downloader import Ui_Initializer # noqa: F401
from guiscrcpy.ui.pyside2.toolkit import Ui_ToolbarPanel # noqa: F401

0 comments on commit e189a39

Please sign in to comment.