We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I run the code below with QLabeledRangeSlider, most of the time, when I close the widget (clicking on 'x'), I get the following memory error:
QLabeledRangeSlider
Process finished with exit code -1073741819 (0xC0000005)
This memory error disappears when the MyClass2 class is commented out (strange !) or when I replace QLabeledRangeSlider with QRangeSlider.
MyClass2
QRangeSlider
import sys from PySide6.QtWidgets import QApplication, QMainWindow, QWidget, QVBoxLayout import superqt class MyClass1(QWidget): def __init__(self, parent=None): super().__init__(parent) # range_slider = superqt.QRangeSlider(self) labeled_range_slider = superqt.QLabeledRangeSlider(self) class MyClass2(MyClass1): ... app = QApplication(sys.argv) main = QMainWindow() obj = MyClass1(main) main.setCentralWidget(obj) main.show() sys.exit(app.exec())
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I run the code below with
QLabeledRangeSlider
, most of the time, when I close the widget (clicking on 'x'), I get the following memory error:This memory error disappears when the
MyClass2
class is commented out (strange !) or when I replaceQLabeledRangeSlider
withQRangeSlider
.The text was updated successfully, but these errors were encountered: