diff --git a/README.md b/README.md index 83e56da..dd7d740 100644 --- a/README.md +++ b/README.md @@ -68,4 +68,4 @@ Note: the gallery app will first attempt to import QoreWidgets from installed py ## Styling -QoreWidgets mainly focus on functional enhancements with minimal emphasis on decoration. However, they should fit in with your global theme or stylesheets, for example, [QDarkStyleSheet](https://github.com/ColinDuquesnoy/QDarkStyleSheet). +QoreWidgets mainly focus on functional enhancements with minimal emphasis on decoration. However, they should fit in with your global theme or stylesheets, for example, [PyQtDarkTheme](https://github.com/5yutan5/PyQtDarkTheme). diff --git a/pyproject.toml b/pyproject.toml index b79155c..54e9b6e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name="QoreWidgets" -version="0.1.0" +version="0.1.1" description = "Yet another collection of those core widgets for a modern qt application." authors = [ diff --git a/src/QoreWidgets/__pyside6__/__framelessWindow__/framelessWindow.py b/src/QoreWidgets/__pyside6__/__framelessWindow__/framelessWindow.py index 85ddce6..fc2b125 100644 --- a/src/QoreWidgets/__pyside6__/__framelessWindow__/framelessWindow.py +++ b/src/QoreWidgets/__pyside6__/__framelessWindow__/framelessWindow.py @@ -129,7 +129,7 @@ def follow_geometry(self): class FramelessWindow(QMainWindow): '''Frameless Window with resize grips''' def __init__(self, parent=None,flConfig:FramelessWindowConfig=FramelessWindowConfig()): - super(FramelessWindow, self).__init__(parent) + super().__init__(parent) self.flConfig=flConfig self.setWindowFlags(Qt.WindowType.FramelessWindowHint) diff --git a/src/QoreWidgets/__pyside6__/__sideTabWidget__/sideTabWidget.py b/src/QoreWidgets/__pyside6__/__sideTabWidget__/sideTabWidget.py index ea7c709..04a31ce 100644 --- a/src/QoreWidgets/__pyside6__/__sideTabWidget__/sideTabWidget.py +++ b/src/QoreWidgets/__pyside6__/__sideTabWidget__/sideTabWidget.py @@ -158,7 +158,7 @@ class SideTabWidget(QTabWidget): foldStateChanged=Signal(bool) # pass the fold state from the tabbar to the parent widget def __init__(self, parent=None, stConfig:SideTabConfig=SideTabConfig()): - QTabWidget.__init__(self, parent) + super().__init__(parent) self.stConfig=stConfig self.tabbar=SideTabBar(self,stConfig)