Fri, 27 Oct 2023 14:09:40 +0200
Regenerated the source documentation with the corrected module parser.
# -*- coding: utf-8 -*- # Copyright (c) 2023 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing a stretchable spacer widget. """ from PyQt6.QtWidgets import QHBoxLayout, QWidget class EricStretchableSpacer(QWidget): """ Class implementing a stretchable spacer widget. """ def __init__(self, parent=None): """ Constructor @param parent reference to the parent widget (defaults to None) @type QWidget (optional) """ super().__init__(parent) self.__layout = QHBoxLayout() self.__layout.setContentsMargins(0, 0, 0, 0) self.__layout.addStretch() self.setLayout(self.__layout)