Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion freecad/_4d_overview_wb/core/AssetCreatorWidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# ***************************************************************************
import FreeCAD
import FreeCADGui
from PySide6 import QtWidgets, QtCore
from PySide import QtWidgets # FreeCAD's PySide!
import os


Expand Down
2 changes: 1 addition & 1 deletion freecad/_4d_overview_wb/core/CentralWindowGeneric.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

import FreeCADGui
from PySide6 import QtWidgets
from PySide import QtWidgets # FreeCAD's PySide!

class CentralView(QtWidgets.QWidget):
def __init__(self):
Expand Down
2 changes: 1 addition & 1 deletion freecad/_4d_overview_wb/core/CentralWindowOverview.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# ***************************************************************************
import FreeCADGui
import FreeCAD
from PySide6 import QtWidgets , QtCore, QtGui
from PySide import QtWidgets , QtCore, QtGui # FreeCAD's PySide!
import os
import string, zipfile
from pathlib import Path
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# ---
# ***************************************************************************
import FreeCAD, FreeCADGui
from PySide6 import QtWidgets, QtCore, QtGui
from PySide import QtWidgets, QtCore, QtGui # Freecad's PySide!
from pathlib import Path
import os

Expand Down
2 changes: 1 addition & 1 deletion freecad/_4d_overview_wb/core/CentralWindowTimeLine.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# ***************************************************************************
import FreeCADGui
import FreeCAD
from PySide6 import QtWidgets, QtCore, QtGui
from PySide import QtWidgets, QtCore, QtGui # Freecad's PySide!
import os
import string, zipfile
from pathlib import Path
Expand Down
4 changes: 1 addition & 3 deletions freecad/_4d_overview_wb/core/StartDockWidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,11 @@



from PySide6 import QtWidgets, QtCore
from PySide import QtWidgets, QtCore # FreeCAD's PySide! Can be PySide2 or PySide6.
import FreeCADGui
import FreeCAD
import os

from PySide6.QtGui import QIcon, QPixmap
from PySide6.QtCore import QSize, Qt

from freecad. _4d_overview_wb.core import CentralWindowGeneric
from freecad. _4d_overview_wb.core import CentralWindowOverview
Expand Down